diff --git a/src/wallet/bdb.h b/src/wallet/bdb.h --- a/src/wallet/bdb.h +++ b/src/wallet/bdb.h @@ -121,29 +121,6 @@ } } - /** Return object for accessing database at specified path. */ - static std::unique_ptr Create(const fs::path &path) { - std::string filename; - return std::make_unique(GetWalletEnv(path, filename), - std::move(filename)); - } - - /** - * Return object for accessing dummy database with no read/write - * capabilities. - */ - static std::unique_ptr CreateDummy() { - return std::make_unique(); - } - - /** - * Return object for accessing temporary in-memory database. - */ - static std::unique_ptr CreateMock() { - return std::make_unique( - std::make_shared(), ""); - } - /** * Rewrite the entire database on disk, with the exception of key pszSkip if * non-zero