We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3323281 commit 69d2e9bCopy full SHA for 69d2e9b
src/wallet/db.h
@@ -120,16 +120,16 @@ class CWalletDBWrapper
120
*/
121
void Flush(bool shutdown);
122
123
+private:
124
+ /** BerkeleyDB specific */
125
+ CDBEnv *env;
126
+ std::string strFile;
127
+
128
/** Return whether this database handle is a dummy for testing.
129
* Only to be used at a low level, application should ideally not care
130
* about this.
131
132
bool IsDummy() { return env == nullptr; }
-
-private:
- /** BerkeleyDB specific */
- CDBEnv *env;
- std::string strFile;
133
};
134
135
0 commit comments