diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2016-07-22 15:57:25 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2016-07-30 02:17:47 +0200 |
commit | 0fd2a33648ccde4b989f1d69529daea4d88b14a2 (patch) | |
tree | 9239f56f316cb63fd390f0cdf553b420df5c12c3 /src/main.cpp | |
parent | bbcb8fd884335134065143047e9798dc8ec13445 (diff) |
Use a signal to continue init after genesis activation
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 622ec51422..f8eab7eb3f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4331,8 +4331,6 @@ bool InitBlockIndex(const CChainParams& chainparams) CBlockIndex *pindex = AddToBlockIndex(block); if (!ReceivedBlockTransactions(block, state, pindex, blockPos)) return error("LoadBlockIndex(): genesis block not accepted"); - if (!ActivateBestChain(state, chainparams, &block)) - return error("LoadBlockIndex(): genesis block cannot be activated"); // Force a chainstate write so that when we VerifyDB in a moment, it doesn't check stale data return FlushStateToDisk(state, FLUSH_STATE_ALWAYS); } catch (const std::runtime_error& e) { |