diff options
author | James O'Beirne <james.obeirne@pm.me> | 2021-04-23 13:29:53 -0400 |
---|---|---|
committer | James O'Beirne <james.obeirne@pm.me> | 2021-04-26 13:22:37 -0400 |
commit | 91d93aac4e3fe6fff5ef492ed152c4d8fa6f2672 (patch) | |
tree | 19bd7d1b4a66cac0ab4139c93c487b678d18ae62 /src/node | |
parent | 931684b24a89aba884cb18c13fa67ccca339ee8c (diff) |
validation: remove nchaintx from assumeutxo metadata
This value is no longer used and is instead specified statically
in chainparams. This change means that previously generated
snapshots will no longer be usable.
Diffstat (limited to 'src/node')
-rw-r--r-- | src/node/utxo_snapshot.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/node/utxo_snapshot.h b/src/node/utxo_snapshot.h index 4767d49889..61292cdcc5 100644 --- a/src/node/utxo_snapshot.h +++ b/src/node/utxo_snapshot.h @@ -22,22 +22,15 @@ public: //! during snapshot load to estimate progress of UTXO set reconstruction. uint64_t m_coins_count = 0; - //! 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() { } SnapshotMetadata( const uint256& base_blockhash, uint64_t coins_count, unsigned int nchaintx) : m_base_blockhash(base_blockhash), - m_coins_count(coins_count), - m_nchaintx(nchaintx) { } + m_coins_count(coins_count) { } - SERIALIZE_METHODS(SnapshotMetadata, obj) { READWRITE(obj.m_base_blockhash, obj.m_coins_count, obj.m_nchaintx); } + SERIALIZE_METHODS(SnapshotMetadata, obj) { READWRITE(obj.m_base_blockhash, obj.m_coins_count); } }; #endif // BITCOIN_NODE_UTXO_SNAPSHOT_H |