Skip to content

Commit

Permalink
Release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SMMCoreDev committed Apr 17, 2019
1 parent ce5b0ca commit dc1f8f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/miner.cpp
Expand Up @@ -555,9 +555,9 @@ void BitcoinMiner(CWallet* pwallet, bool fProofOfStake)

int64_t nReserved = max(nReserveBalance, nPos);

//while (chainActive.Tip()->nTime < 1471482000 || vNodes.empty() || pwallet->IsLocked() || !fMintableCoins || nReserved >= pwallet->GetBalance() || !masternodeSync.IsSynced() ) {
while (chainActive.Tip()->nTime < 1471482000 || vNodes.empty() || pwallet->IsLocked() || !fMintableCoins || nReserved >= pwallet->GetBalance() || !masternodeSync.IsSynced() ) {
//DEBUG!!!
while (chainActive.Tip()->nTime < 1471482000 || vNodes.empty() || pwallet->IsLocked() || !fMintableCoins || nReserveBalance >= pwallet->GetBalance() ) {
//while (chainActive.Tip()->nTime < 1471482000 || vNodes.empty() || pwallet->IsLocked() || !fMintableCoins || nReserveBalance >= pwallet->GetBalance() ) {
nLastCoinStakeSearchInterval = 0;
//LogPrintf("Miner: ProofOfStake is true, but wallet is not synces, locked, etc...\n");
MilliSleep(5000);
Expand Down

0 comments on commit dc1f8f4

Please sign in to comment.