File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -120,25 +120,6 @@ class BerkeleyDatabase
120120 }
121121 }
122122
123- /* * Return object for accessing database at specified path. */
124- static std::unique_ptr<BerkeleyDatabase> Create (const fs::path& path)
125- {
126- std::string filename;
127- return MakeUnique<BerkeleyDatabase>(GetWalletEnv (path, filename), std::move (filename));
128- }
129-
130- /* * Return object for accessing dummy database with no read/write capabilities. */
131- static std::unique_ptr<BerkeleyDatabase> CreateDummy ()
132- {
133- return MakeUnique<BerkeleyDatabase>();
134- }
135-
136- /* * Return object for accessing temporary in-memory database. */
137- static std::unique_ptr<BerkeleyDatabase> CreateMock ()
138- {
139- return MakeUnique<BerkeleyDatabase>(std::make_shared<BerkeleyEnvironment>(), " " );
140- }
141-
142123 /* * Rewrite the entire database on disk, with the exception of key pszSkip if non-zero
143124 */
144125 bool Rewrite (const char * pszSkip=nullptr );
You can’t perform that action at this time.
0 commit comments