| 2662 | } |
| 2663 | |
| 2664 | void CChainState::ForceFlushStateToDisk() |
| 2665 | { |
| 2666 | BlockValidationState state; |
| 2667 | if (!this->FlushStateToDisk(state, FlushStateMode::ALWAYS)) { |
| 2668 | LogPrintf("%s: failed to flush state (%s)\n", __func__, state.ToString()); |
| 2669 | } |
| 2670 | } |
| 2671 | |
| 2672 | void CChainState::PruneAndFlush() |
| 2673 | { |
no test coverage detected