This commit is contained in:
jl777
2018-04-07 22:46:38 +03:00
parent c6e53b1ad3
commit eb6c7bb831
3 changed files with 12 additions and 16 deletions

View File

@@ -988,15 +988,3 @@ int32_t komodo_validate_interest(const CTransaction &tx,int32_t txheight,uint32_
return(0);
}
void komodo_listunspent();
int32_t komodo_staked(uint256 *utxotxidp,int32_t *utxovoutp,uint64_t *utxovaluep,uint8_t *utxosig)
{
*utxovaluep = 0;
memset(utxotxidp,0,sizeof(*utxotxidp));
memset(utxovoutp,0,sizeof(*utxovoutp));
memset(utxosig,0,72);
komodo_listunspent();
return(72);
}