aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/db.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet/db.h')
-rw-r--r--src/wallet/db.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/wallet/db.h b/src/wallet/db.h
index 6a918ec925..6e11d7de88 100644
--- a/src/wallet/db.h
+++ b/src/wallet/db.h
@@ -147,9 +147,6 @@ public:
unsigned int nLastFlushed;
int64_t nLastWalletUpdate;
- /** Verifies the environment and database file */
- virtual bool Verify(bilingual_str& error) = 0;
-
std::string m_file_path;
/** Make a DatabaseBatch connected to this database */
@@ -192,7 +189,6 @@ public:
bool PeriodicFlush() override { return true; }
void IncrementUpdateCounter() override { ++nUpdateCounter; }
void ReloadDbEnv() override {}
- bool Verify(bilingual_str& errorStr) override { return true; }
std::unique_ptr<DatabaseBatch> MakeBatch(const char* mode = "r+", bool flush_on_close = true) override { return MakeUnique<DummyBatch>(); }
};