aboutsummaryrefslogtreecommitdiff
path: root/src/node/utxo_snapshot.h
diff options
context:
space:
mode:
authorJames O'Beirne <james.obeirne@pm.me>2021-04-14 13:29:27 -0400
committerJames O'Beirne <james.obeirne@pm.me>2021-04-14 13:29:27 -0400
commit931684b24a89aba884cb18c13fa67ccca339ee8c (patch)
tree99e37bcf0cab24fed7ee2916e1ca290f151588a0 /src/node/utxo_snapshot.h
parent773f8c1a7d568012768e16d2ede65b5d4d62aced (diff)
downloadbitcoin-931684b24a89aba884cb18c13fa67ccca339ee8c.tar.xz
validation: fix ActivateSnapshot to use hardcoded nChainTx
This fixes an oversight from the move of nChainTx from the user-supplied snapshot metadata into the hardcoded assumeutxo chainparams. Since the nChainTx is now unused in the metadata, it should be removed in a future commit.
Diffstat (limited to 'src/node/utxo_snapshot.h')
-rw-r--r--src/node/utxo_snapshot.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/node/utxo_snapshot.h b/src/node/utxo_snapshot.h
index fe78cb46bd..4767d49889 100644
--- a/src/node/utxo_snapshot.h
+++ b/src/node/utxo_snapshot.h
@@ -24,6 +24,8 @@ public:
//! Necessary to "fake" the base nChainTx so that we can estimate progress during
//! initial block download for the assumeutxo chainstate.
+ //!
+ //! TODO: this is unused and should be removed.
unsigned int m_nchaintx = 0;
SnapshotMetadata() { }