mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-04 13:55:23 -05:00
Move mempool nullptr Assert out of LoadChainstate
This commit is contained in:
parent
9162a4f93e
commit
8715658983
2 changed files with 2 additions and 2 deletions
|
@ -1421,7 +1421,7 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info)
|
|||
const int64_t load_block_index_start_time = GetTimeMillis();
|
||||
auto rv = LoadChainstate(fReset,
|
||||
chainman,
|
||||
node.mempool.get(),
|
||||
Assert(node.mempool.get()),
|
||||
fPruneMode,
|
||||
chainparams,
|
||||
fReindexChainState,
|
||||
|
|
|
@ -31,7 +31,7 @@ std::optional<ChainstateLoadingError> LoadChainstate(bool fReset,
|
|||
do {
|
||||
try {
|
||||
LOCK(cs_main);
|
||||
chainman.InitializeChainstate(Assert(mempool));
|
||||
chainman.InitializeChainstate(mempool);
|
||||
chainman.m_total_coinstip_cache = nCoinCacheUsage;
|
||||
chainman.m_total_coinsdb_cache = nCoinDBCache;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue