diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-09-30 12:24:12 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-10-14 11:28:18 -0400 |
commit | 6c6639ac9f6e1677da066cf809f9e3fa4d2e7c32 (patch) | |
tree | b8d6a7209663169552f4aaf3612bc5b05f8985fc /doc/files.md | |
parent | f023b7cac0eb16d3c1bf40f1f7898b290de4cc73 (diff) |
Include sqlite3 in documentation
Diffstat (limited to 'doc/files.md')
-rw-r--r-- | doc/files.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/files.md b/doc/files.md index 64cff43d3f..e3f195de43 100644 --- a/doc/files.md +++ b/doc/files.md @@ -72,8 +72,9 @@ Subdirectory | File(s) | Description -------------|-------------------|------------ `database/` | BDB logging files | Part of BDB environment; created at start and deleted on shutdown; a user *must keep it as safe* as personal wallet `wallet.dat` `./` | `db.log` | BDB error file -`./` | `wallet.dat` | Personal wallet (BDB) with keys and transactions +`./` | `wallet.dat` | Personal wallet with keys and transactions. May be either a Berkeley DB or SQLite database file. `./` | `.walletlock` | Wallet lock file +`./` | `wallet.dat-journal` | SQLite Rollback Journal file for `wallet.dat`. Usually created at start and deleted on shutdown. A user *must keep it as safe* as the `wallet.dat` file. 1. Each user-defined wallet named "wallet_name" resides in `wallets/wallet_name/` subdirectory. |