From 895c70efd0fb6d3597db8c8186032edbb99bf368 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 8e4ea8eda2f62..ccc84bc5fee39 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -5643,7 +5643,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);