Create dummy DB handle */
| 98 | public: |
| 99 | /** Create dummy DB handle */ |
| 100 | BerkeleyDatabase() : nUpdateCounter(0), nLastSeen(0), nLastFlushed(0), nLastWalletUpdate(0), env(nullptr) |
| 101 | { |
| 102 | } |
| 103 | |
| 104 | /** Create DB handle to real database */ |
| 105 | BerkeleyDatabase(const fs::path& wallet_path, bool mock = false) : |
nothing calls this directly
no test coverage detected