From 29d3438fdd7dfe93df7009140d8568c94db2c215 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 b6d848c23f358e..5472141555c577 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -5634,7 +5634,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);