mirror of
https://github.com/dashpay/dash.git
synced 2024-12-24 11:32:46 +01:00
Move init logistics message for BAD_GENESIS_BLOCK to init.cpp
This commit is contained in:
parent
29c736280d
commit
2ea1bbc7aa
@ -1901,6 +1901,8 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info)
|
|||||||
strLoadError = _("Error loading block database");
|
strLoadError = _("Error loading block database");
|
||||||
break;
|
break;
|
||||||
case ChainstateLoadingError::ERROR_BAD_GENESIS_BLOCK:
|
case ChainstateLoadingError::ERROR_BAD_GENESIS_BLOCK:
|
||||||
|
// If the loaded chain has a wrong genesis, bail out immediately
|
||||||
|
// (we're likely using a testnet datadir, or the other way around).
|
||||||
return InitError(_("Incorrect or no genesis block found. Wrong datadir for network?"));
|
return InitError(_("Incorrect or no genesis block found. Wrong datadir for network?"));
|
||||||
case ChainstateLoadingError::ERROR_BAD_DEVNET_GENESIS_BLOCK:
|
case ChainstateLoadingError::ERROR_BAD_DEVNET_GENESIS_BLOCK:
|
||||||
return InitError(_("Incorrect or no devnet genesis block found. Wrong datadir for devnet specified?"));
|
return InitError(_("Incorrect or no devnet genesis block found. Wrong datadir for devnet specified?"));
|
||||||
|
@ -128,8 +128,6 @@ std::optional<ChainstateLoadingError> LoadChainstate(bool fReset,
|
|||||||
return ChainstateLoadingError::ERROR_TXINDEX_DISABLED_WHEN_GOV_ENABLED;
|
return ChainstateLoadingError::ERROR_TXINDEX_DISABLED_WHEN_GOV_ENABLED;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the loaded chain has a wrong genesis, bail out immediately
|
|
||||||
// (we're likely using a testnet datadir, or the other way around).
|
|
||||||
if (!chainman.BlockIndex().empty() &&
|
if (!chainman.BlockIndex().empty() &&
|
||||||
!chainman.m_blockman.LookupBlockIndex(chainparams.GetConsensus().hashGenesisBlock)) {
|
!chainman.m_blockman.LookupBlockIndex(chainparams.GetConsensus().hashGenesisBlock)) {
|
||||||
return ChainstateLoadingError::ERROR_BAD_GENESIS_BLOCK;
|
return ChainstateLoadingError::ERROR_BAD_GENESIS_BLOCK;
|
||||||
|
Loading…
Reference in New Issue
Block a user