aboutsummaryrefslogtreecommitdiff
path: root/src/validation.h
diff options
context:
space:
mode:
authorSebastian Falbesoner <sebastian.falbesoner@gmail.com>2022-01-01 13:00:07 +0100
committerSebastian Falbesoner <sebastian.falbesoner@gmail.com>2022-01-01 13:00:07 +0100
commit2e42050b7fc61201f202438e8cd4383a06eb98d5 (patch)
tree194dae6e817c359e1e79a45abf65f4ac1b1b613c /src/validation.h
parenta1e04e10799791a728cce4430808517598c8742c (diff)
downloadbitcoin-2e42050b7fc61201f202438e8cd4383a06eb98d5.tar.xz
doc: fix undo data filename (s/undo???.dat/rev???.dat/)
Diffstat (limited to 'src/validation.h')
-rw-r--r--src/validation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.h b/src/validation.h
index 8e03104779..68649a3d23 100644
--- a/src/validation.h
+++ b/src/validation.h
@@ -402,7 +402,7 @@ private:
void FindFilesToPruneManual(std::set<int>& setFilesToPrune, int nManualPruneHeight, int chain_tip_height);
/**
- * Prune block and undo files (blk???.dat and undo???.dat) so that the disk space used is less than a user-defined target.
+ * Prune block and undo files (blk???.dat and rev???.dat) so that the disk space used is less than a user-defined target.
* The user sets the target (in MB) on the command line or in config file. This will be run on startup and whenever new
* space is allocated in a block or undo file, staying below the target. Changing back to unpruned requires a reindex
* (which in this case means the blockchain must be re-downloaded.)