diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-04-21 16:04:26 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-04-21 16:04:26 +0200 |
commit | 911a4808fb8d9c73463f9686ca4c26b8556ce53b (patch) | |
tree | 288dadd1a6d22d869701ae0c90aa140d3f6fb10d /src/wallet/walletdb.h | |
parent | 69d2e9ba678ea90db0bc3f3436d6417f0e1fc2e9 (diff) |
wallet: Add comment describing the various classes in walletdb.h
Diffstat (limited to 'src/wallet/walletdb.h')
-rw-r--r-- | src/wallet/walletdb.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/wallet/walletdb.h b/src/wallet/walletdb.h index 98a65a130c..cd9fe279c5 100644 --- a/src/wallet/walletdb.h +++ b/src/wallet/walletdb.h @@ -17,6 +17,21 @@ #include <utility> #include <vector> +/** + * Overview of wallet database classes: + * + * - CDBEnv is an environment in which the database exists (has no analog in dbwrapper.h) + * - CWalletDBWrapper represents a wallet database (similar to CDBWrapper in dbwrapper.h) + * - CDB is a low-level database transaction (similar to CDBBatch in dbwrapper.h) + * - CWalletDB is a modifier object for the wallet, and encapsulates a database + * transaction as well as methods to act on the database (no analog in + * dbwrapper.h) + * + * The latter two are named confusingly, in contrast to what the names CDB + * and CWalletDB suggest they are transient transaction objects and don't + * represent the database itself. + */ + static const bool DEFAULT_FLUSHWALLET = true; class CAccount; |