File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 17
17
#include < utility>
18
18
#include < vector>
19
19
20
+ /* *
21
+ * Overview of wallet database classes:
22
+ *
23
+ * - CDBEnv is an environment in which the database exists (has no analog in dbwrapper.h)
24
+ * - CWalletDBWrapper represents a wallet database (similar to CDBWrapper in dbwrapper.h)
25
+ * - CDB is a low-level database transaction (similar to CDBBatch in dbwrapper.h)
26
+ * - CWalletDB is a modifier object for the wallet, and encapsulates a database
27
+ * transaction as well as methods to act on the database (no analog in
28
+ * dbwrapper.h)
29
+ *
30
+ * The latter two are named confusingly, in contrast to what the names CDB
31
+ * and CWalletDB suggest they are transient transaction objects and don't
32
+ * represent the database itself.
33
+ */
34
+
20
35
static const bool DEFAULT_FLUSHWALLET = true ;
21
36
22
37
class CAccount ;
You can’t perform that action at this time.
0 commit comments