diff --git a/src/miner.cpp b/src/miner.cpp index c698809f5..057cf618c 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -754,6 +754,15 @@ void static BitcoinMiner_noeq() if ( komodo_baseid(ASSETCHAINS_SYMBOL) < 0 ) break; } + + CBlockIndex* curTip; + do { + curTip = chainActive.Tip(); + printf("Verifying block height %d", chainActive.Tip()->nHeight + 1); + sleep(2); + } while (curTip != chainActive.Tip()); + printf("Mining height %d", chainActive.Tip()->nHeight + 1); + miningTimer.start(); try {