| 4253 | } |
| 4254 | |
| 4255 | void CChainState::LoadMempool(const ArgsManager& args) |
| 4256 | { |
| 4257 | if (!m_mempool) return; |
| 4258 | if (args.GetBoolArg("-persistmempool", DEFAULT_PERSIST_MEMPOOL)) { |
| 4259 | ::LoadMempool(*m_mempool, *this); |
| 4260 | } |
| 4261 | m_mempool->SetIsLoaded(!ShutdownRequested()); |
| 4262 | } |
| 4263 | |
| 4264 | bool CChainState::LoadChainTip() |
| 4265 | { |
no test coverage detected