This commit is contained in:
jl777
2016-11-06 13:41:30 -03:00
parent eff7174eac
commit 2e9292fe34
2 changed files with 128 additions and 1 deletions

View File

@@ -362,6 +362,17 @@ uint32_t komodo_txtime(uint256 hash)
return(0);
}
uint64_t komodo_seed(int32_t height)
{
uint256 hash; uint64_t seed = 0; CBlockIndex *pindex = chainActive[height];
if ( pindex != 0 )
{
hash = pindex->GetHash();
seed = hash & 0xffffffffffffffff;
}
return(seed);
}
void komodo_disconnect(CBlockIndex *pindex,CBlock& block)
{
//int32_t i; uint256 hash;