From 3aac96a8228e4f126cbf2c8b097902f631b9b58c Mon Sep 17 00:00:00 2001 From: jl777 Date: Sun, 8 Jul 2018 16:53:01 -1100 Subject: [PATCH] <6000 compatibility --- src/miner.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/miner.cpp b/src/miner.cpp index 2e552d62f..bbcbf6643 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -1001,6 +1001,11 @@ void static BitcoinMiner() { while ( B.nTime-57 > GetAdjustedTime() ) sleep(1); + if ( Mining_height < 6000 ) + { + while ( B.nTime > GetAdjustedTime() ) + sleep(1); + } uint256 tmp = B.GetHash(); int32_t z; for (z=31; z>=0; z--) fprintf(stderr,"%02x",((uint8_t *)&tmp)[z]);