File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 10
10
* db.log: wallet database log file; moved to wallets/ directory on new installs since 0.16.0
11
11
* debug.log: contains debug information and general logging generated by bitcoind or bitcoin-qt
12
12
* fee_estimates.dat: stores statistics used to estimate minimum transaction fees and priorities required for confirmation; since 0.10.0
13
+ * indexes/txindex/* : optional transaction index database (LevelDB); since 0.17.0
13
14
* mempool.dat: dump of the mempool's transactions; since 0.14.0.
14
15
* peers.dat: peer IP address database (custom format); since 0.7.0
15
16
* wallet.dat: personal wallet (BDB) with keys and transactions; moved to wallets/ directory on new installs since 0.16.0
Original file line number Diff line number Diff line change
1
+ Transaction index changes
2
+ -------------------------
3
+
4
+ The transaction index is now built separately from the main node procedure,
5
+ meaning the ` -txindex ` flag can be toggled without a full reindex. If bitcoind
6
+ is run with ` -txindex ` on a node that is already partially or fully synced
7
+ without one, the transaction index will be built in the background and become
8
+ available once caught up. When switching from running ` -txindex ` to running
9
+ without the flag, the transaction index database will * not* be deleted
10
+ automatically, meaning it could be turned back on at a later time without a full
11
+ resync.
You can’t perform that action at this time.
0 commit comments