We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8ed76f commit d2aebc5Copy full SHA for d2aebc5
src/miner.cpp
@@ -702,7 +702,7 @@ void BitcoinMiner(CWallet* pwallet, bool fProofOfStake)
702
//search our map of hashed blocks, see if bestblock has been hashed yet
703
if (pwallet->pStakerStatus->GetLastHash() == pindexPrev->GetBlockHash())
704
{
705
- uint256 lastHashTime = pwallet->pStakerStatus->GetLastTime();
+ int64_t lastHashTime = pwallet->pStakerStatus->GetLastTime();
706
if ( (!fTimeV2 && GetTime() < lastHashTime + 22) ||
707
(fTimeV2 && GetCurrentTimeSlot() <= lastHashTime) )
708
0 commit comments