From dcb7bfb707b6144ccd22b78e5fe0bf3301ee7815 Mon Sep 17 00:00:00 2001 From: josibake Date: Tue, 17 Sep 2024 17:35:06 +0200 Subject: [PATCH] update validation.cpp this seems weird? why do we need to reference the specific implementation vs cdbwrapperbase? --- src/validation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/validation.cpp b/src/validation.cpp index b47b1d09ae1e9a..9d27a409bf146c 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -5633,7 +5633,7 @@ Chainstate& ChainstateManager::InitializeChainstate(CTxMemPool* mempool) // We have to destruct before this call leveldb::DB in order to release the db // lock, otherwise `DestroyDB` will fail. See `leveldb::~DBImpl()`. - const bool destroyed = DestroyDB(path_str); + const bool destroyed = MDBXWrapper::DestroyDB(path_str); if (!destroyed) { LogPrintf("error: leveldb DestroyDB call failed on %s\n", path_str);