RAII wrapper for VerifyDB: Verify consistency of the block and coin databases */
| 428 | |
| 429 | /** RAII wrapper for VerifyDB: Verify consistency of the block and coin databases */ |
| 430 | class CVerifyDB { |
| 431 | public: |
| 432 | CVerifyDB(); |
| 433 | ~CVerifyDB(); |
| 434 | bool VerifyDB(const CChainParams& chainparams, CCoinsView *coinsview, int nCheckLevel, int nCheckDepth); |
| 435 | }; |
| 436 | |
| 437 | /** Replay blocks that aren't fully applied to the database. */ |
| 438 | bool ReplayBlocks(const CChainParams& params, CCoinsView* view); |
no outgoing calls
no test coverage detected