aboutsummaryrefslogtreecommitdiff
path: root/src/chain.h
diff options
context:
space:
mode:
authorSjors Provoost <sjors@sprovoost.nl>2019-10-21 18:11:27 +0200
committerSjors Provoost <sjors@sprovoost.nl>2021-02-17 16:35:43 +0100
commitef72e9bd4124645fe2d00521a71c1c298d760225 (patch)
tree0a1b8017ab16f9ca614717ac616cb0fbea311431 /src/chain.h
parent04336086d3cb2a738e82cf54d9995474ca485f0c (diff)
downloadbitcoin-ef72e9bd4124645fe2d00521a71c1c298d760225.tar.xz
doc: nChainTx needs to become a 64-bit earlier due to SegWit
Diffstat (limited to 'src/chain.h')
-rw-r--r--src/chain.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chain.h b/src/chain.h
index 04a5db5a17..e452e0ffff 100644
--- a/src/chain.h
+++ b/src/chain.h
@@ -170,7 +170,7 @@ public:
//! (memory only) Number of transactions in the chain up to and including this block.
//! This value will be non-zero only if and only if transactions for this block and all its parents are available.
- //! Change to 64-bit type when necessary; won't happen before 2030
+ //! Change to 64-bit type before 2024 (assuming worst case of 60 byte transactions).
//!
//! Note: this value is faked during use of a UTXO snapshot because we don't
//! have the underlying block data available during snapshot load.