aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-11-30 10:18:38 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-11-30 10:18:46 +0100
commit74b5ce24c6a450c0a57048b012dd15b182e981a9 (patch)
treebf8db5c5f2e24b3e468b53264a3de4302a3fad7d /src/main.h
parentfa93174a7c06f6bf74e597764398090f3d14c30c (diff)
parentcb491e778828d322800793cb229884c904f172b5 (diff)
downloadbitcoin-74b5ce24c6a450c0a57048b012dd15b182e981a9.tar.xz
Merge pull request #7116
cb491e7 Trivial: Fix warning introduced by #7053 by casting to uint64_t (Jorge Timón)
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h
index 3dec613fc7..bdbfa3826e 100644
--- a/src/main.h
+++ b/src/main.h
@@ -222,7 +222,7 @@ CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams);
*
* Pruning functions are called from FlushStateToDisk when the global fCheckForPruning flag has been set.
* Block and undo files are deleted in lock-step (when blk00003.dat is deleted, so is rev00003.dat.)
- * Pruning cannot take place until the longest chain is at least a certain length (100000 on mainnet, 1000 on testnet, 10 on regtest).
+ * Pruning cannot take place until the longest chain is at least a certain length (100000 on mainnet, 1000 on testnet, 1000 on regtest).
* Pruning will never delete a block within a defined distance (currently 288) from the active chain's tip.
* The block index is updated by unsetting HAVE_DATA and HAVE_UNDO for any blocks that were stored in the deleted files.
* A db flag records the fact that at least some block files have been pruned.