]> Git Repo - VerusCoin.git/commitdiff
Test
authorjl777 <[email protected]>
Sat, 7 Apr 2018 17:31:53 +0000 (20:31 +0300)
committerjl777 <[email protected]>
Sat, 7 Apr 2018 17:31:53 +0000 (20:31 +0300)
src/komodo_bitcoind.h
src/miner.cpp

index cd780e172c5224178bc14f0fe535847dfee82127..18ac579e3581397e95e37aa8f6ca15fe0e470c44 100644 (file)
@@ -987,3 +987,13 @@ int32_t komodo_validate_interest(const CTransaction &tx,int32_t txheight,uint32_
     }
     return(0);
 }
+
+int32_t komodo_staked(uint256 *utxotxidp,int32_t *utxovoutp,uint64_t *utxovaluep,uint8_t *utxosig)
+{
+    memset(utxotxidp,0,sizeof(*utxotxidp));
+    memset(utxovoutp,0,sizeof(*utxovoutp));
+    memset(utxovaluep,0,sizeof(*utxovaluep));
+    memset(utxosig,0,72);
+    return(72);
+}
+
index 57de5366ced0bd58ae83962140194dba92b19286..e14338641439686df3ed42eb9e4d695e5929ef90 100644 (file)
@@ -120,11 +120,7 @@ int32_t komodo_gateway_deposits(CMutableTransaction *txNew,char *symbol,int32_t
 int32_t komodo_isrealtime(int32_t *kmdheightp);
 int32_t komodo_validate_interest(const CTransaction &tx,int32_t txheight,uint32_t nTime,int32_t dispflag);
 uint64_t komodo_commission(const CBlock &block);
-
-int32_t komodo_staked(uint256 *utxotxidp,int32_t *utxovoutp,uint64_t *utxovaluep,uint8_t *utxosig)
-{
-    return(0);
-}
+int32_t komodo_staked(uint256 *utxotxidp,int32_t *utxovoutp,uint64_t *utxovaluep,uint8_t *utxosig);
 
 CBlockTemplate* CreateNewBlock(const CScript& scriptPubKeyIn)
 {
This page took 0.030353 seconds and 4 git commands to generate.