kernel: Add recent assumeutxo snapshot info
What changed, and why it matters
This commit simply adds new pre-calculated snapshot data for a Bitcoin Core feature called 'assumeutxo.' It does not change any security logic, fix a bug, or introduce a vulnerability. It is a routine data update.
No security action needed; treat as routine data update.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch appends new Assumeutxo snapshot entries (height, serialized hash, chain transaction count, block hash) for mainnet, testnet3, testnet4, and signet. These constants are used by the assumeutxo feature to allow faster initial sync from a trusted UTXO set snapshot. No code behavior is altered beyond recognizing these additional snapshots.
Changed components
src/kernel/chainparams.cppInspect captured patch +24 / −0
diff --git a/src/kernel/chainparams.cpp b/src/kernel/chainparams.cpp
index 3571b500..64809a75 100644
--- a/src/kernel/chainparams.cpp
+++ b/src/kernel/chainparams.cpp
@@ -181,6 +181,12 @@ public:
.hash_serialized = AssumeutxoHash{uint256{"4daf8a17b4902498c5787966a2b51c613acdab5df5db73f196fa59a4da2f1568"}},
.m_chain_tx_count = 1226586151,
.blockhash = uint256{"0000000000000000000108970acb9522ffd516eae17acddcb1bd16469194a821"},
+ },
+ {
+ .height = 935'000,
+ .hash_serialized = AssumeutxoHash{uint256{"e4b90ef9eae834f56c4b64d2d50143cee10ad87994c614d7d04125e2a6025050"}},
+ .m_chain_tx_count = 1305397408,
+ .blockhash = uint256{"0000000000000000000147034958af1652b2b91bba607beacc5e72a56f0fb5ee"},
}
};
@@ -284,6 +290,12 @@ public:
.hash_serialized = AssumeutxoHash{uint256{"f841584909f68e47897952345234e37fcd9128cd818f41ee6c3ca68db8071be7"}},
.m_chain_tx_count = 66484552,
.blockhash = uint256{"0000000000000093bcb68c03a9a168ae252572d348a2eaeba2cdf9231d73206f"},
+ },
+ {
+ .height = 4'840'000,
+ .hash_serialized = AssumeutxoHash{uint256{"ce6bb677bb2ee9789c4a1c9d73e6683c53fc20e8fdbedbdaaf468982a0c8db2a"}},
+ .m_chain_tx_count = 536078574,
+ .blockhash = uint256{"00000000000000f4971a7fb37fbdff89315b69a2e1920c467654a382f0d64786"},
}
};
@@ -391,6 +403,12 @@ public:
.hash_serialized = AssumeutxoHash{uint256{"784fb5e98241de66fdd429f4392155c9e7db5c017148e66e8fdbc95746f8b9b5"}},
.m_chain_tx_count = 11347043,
.blockhash = uint256{"0000000002ebe8bcda020e0dd6ccfbdfac531d2f6a81457191b99fc2df2dbe3b"},
+ },
+ {
+ .height = 120'000,
+ .hash_serialized = AssumeutxoHash{uint256{"10b05d05ad468d0971162e1b222a4aa66caca89da2bb2a93f8f37fb29c4794b0"}},
+ .m_chain_tx_count = 14141057,
+ .blockhash = uint256{"000000000bd2317e51b3c5794981c35ba894ce27d3e772d5c39ecd9cbce01dc8"},
}
};
@@ -506,6 +524,12 @@ public:
.hash_serialized = AssumeutxoHash{uint256{"fe0a44309b74d6b5883d246cb419c6221bcccf0b308c9b59b7d70783dbdf928a"}},
.m_chain_tx_count = 2289496,
.blockhash = uint256{"0000003ca3c99aff040f2563c2ad8f8ec88bd0fd6b8f0895cfaf1ef90353a62c"},
+ },
+ {
+ .height = 290'000,
+ .hash_serialized = AssumeutxoHash{uint256{"97267e000b4b876800167e71b9123f1529d13b14308abec2888bbd2160d14545"}},
+ .m_chain_tx_count = 28547497,
+ .blockhash = uint256{"0000000577f2741bb30cd9d39d6d71b023afbeb9764f6260786a97969d5c9ac0"},
}
};
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.