aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2016-08-04 12:21:59 +0200
committerWladimir J. van der Laan <[email protected]>2016-08-04 12:33:21 +0200
commitf97d335942ae1a78c4898acf8640d99f4deaa6d3 (patch)
tree133c24dcf1d2728db1e92d3f9e597ea1c9aa3079 /src/main.cpp
parentMerge #8391: Consensus: Remove ISM (diff)
parentDo diskspace check before import thread is started (diff)
downloaddiscoin-f97d335942ae1a78c4898acf8640d99f4deaa6d3.tar.xz
discoin-f97d335942ae1a78c4898acf8640d99f4deaa6d3.zip
Merge #8392: Fix several node initialization issues
9d4eb9a Do diskspace check before import thread is started (Pieter Wuille) aa59f2e Add extra message to avoid a long 'Loading banlist' (Pieter Wuille) 0fd2a33 Use a signal to continue init after genesis activation (Pieter Wuille)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 2a8772a97..3a07190a6 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -4313,8 +4313,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) {