We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfdaf6d commit 4ee8058Copy full SHA for 4ee8058
src/masternode-sync.cpp
@@ -278,8 +278,7 @@ void CMasternodeSync::Process()
278
if (RequestedMasternodeAssets == MASTERNODE_SYNC_INITIAL) GetNextAsset();
279
280
// sporks synced but blockchain is not, wait until we're almost at a recent block to continue
281
- bool isSynced = IsBlockchainSynced(); // This is needed in regtest as well due how IsBlockchainSynced is implemented..
282
- if (!isRegTestNet && !isSynced &&
+ if (!IsBlockchainSynced() &&
283
RequestedMasternodeAssets > MASTERNODE_SYNC_SPORKS) return;
284
285
CMasternodeSync* sync = this;
0 commit comments