diff options
author | Carl Dong <contact@carldong.me> | 2020-09-15 16:30:32 -0400 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2021-03-01 17:56:07 -0500 |
commit | 2bdf37fe187ba6f090a0f5299b74d5d82cde4697 (patch) | |
tree | a79c01107a74ee56de49d23047e2722c43113710 /src/validation.h | |
parent | 31eac50c721dd3b0bd2347e76196bf16913e9be9 (diff) |
validation: Pass in chainstate to CVerifyDB::VerifyDB
Diffstat (limited to 'src/validation.h')
-rw-r--r-- | src/validation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.h b/src/validation.h index 91f2de6302..e086684a93 100644 --- a/src/validation.h +++ b/src/validation.h @@ -340,7 +340,7 @@ class CVerifyDB { public: CVerifyDB(); ~CVerifyDB(); - bool VerifyDB(const CChainParams& chainparams, CCoinsView *coinsview, int nCheckLevel, int nCheckDepth); + bool VerifyDB(const CChainParams& chainparams, CChainState& active_chainstate, CCoinsView *coinsview, int nCheckLevel, int nCheckDepth); }; enum DisconnectResult |