This should ideally be bumped every major (and perhaps even minor?) release to avoid falling too far behind, and therefore keeping this feature as useful as it can be.
Document in release-process.md to avoid forgetting to do this.
This should ideally be bumped every major (and perhaps even minor?) release to avoid falling too far behind, and therefore keeping this feature as useful as it can be.
Document in release-process.md to avoid forgetting to do this.
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
For details see: https://corecheck.dev/bitcoin/bitcoin/pulls/31940.
See the guideline for information on the review process.
Type | Reviewers |
---|---|
ACK | achow101, glozow |
Concept ACK | hodlinator, Sjors |
Stale ACK | pablomartin4btc |
If your review is incorrectly listed, please react with 👎 to this comment and the bot will ignore it on the next update.
43@@ -44,6 +44,7 @@ Release Process
44 - On mainnet, the selected value must not be orphaned, so it may be useful to set the height two blocks back from the tip.
45 - Testnet should be set with a height some tens of thousands back from the tip, due to reorgs there.
46 - `nMinimumChainWork` with the "chainwork" value of RPC `getblockheader` using the same height as that selected for the previous step.
47+ - `m_assumeutxo_data` array can be appended to with the (partial) output of the `gettxoutsetinfo "hash_serialized_3 <target_block_height>"` RPC. The same height considerations as for `defaultAssumeValid` apply.
0 - `m_assumeutxo_data` array can be appended to with the (partial) output of the `gettxoutsetinfo "hash_serialized_3 <target_block_height>"` RPC. The same height considerations for `defaultAssumeValid` apply.
can be appended
can be or should be?
If it’s important enough to be a part of the release process, might as well enforce it? At least for mainnet, can be optional for test envs?
gettxoutsetinfo
-RPC isn’t allowing me to specify both a hash_type
and block height?
Yes, I see the same issue. This is as per the code: https://github.com/bitcoin/bitcoin/blob/master/src/rpc/blockchain.cpp#L1019-L1021
Following commands work for me instead:
0bitcoincli gettxoutsetinfo
1bitcoincli gettxoutsetinfo muhash <block-height>
2bitcoincli gettxoutsetinfo none <block-height>
Thanks for the check! I actually called invalidateblock
and then gettxoutsetinfo
when testing this. I figured gettxoutsetinfo <hash> <block_height>
was permitted from skimming the RPC helptext, but I didnt’ verify!
As this doesn’t work, I reverted to my tested method of invalidateblock
followed by gettxoutsetinfo
in 9dcf4b6c4d183ab069459b9be49ef7acd7d3be4b (please let me know if there is a better method I’m missing)
Concept ACK
Should we also add a later step in the release process for the actual generation of the assumeutxo snapshot, maybe referencing doc/assumeutxo.md?
Concept ACK
Every major release seems plenty, same as assumevalid.
This should be bumped every major release to avoid falling too far
behind, therefore making this feature as useful as it can be.
Document this in release-process.md to avoid forgetting to add a new
hardcoded height during release.
43@@ -44,6 +44,8 @@ Release Process
44 - On mainnet, the selected value must not be orphaned, so it may be useful to set the height two blocks back from the tip.
45 - Testnet should be set with a height some tens of thousands back from the tip, due to reorgs there.
46 - `nMinimumChainWork` with the "chainwork" value of RPC `getblockheader` using the same height as that selected for the previous step.
47+ - `m_assumeutxo_data` array should be appended to with the (partial) output of the `gettxoutsetinfo` RPC after `invalidateblock <block_height>` has been called.
Can we explicitly list out which things to take from the output?
Also, perhaps it would be better to use dumptxoutset
which gives all of the same data, and it can automatically roll back and forward.
Can we explicitly list out which things to take from the output?
While testing #31969 and using dumptxoutset
I didn’t feel the need for documentation on individual fields as long as there are prior m_assumeutxo_data
-entries. If we keep gettxoutsetinfo
though, the output seems to map less directly, so in that case I agree listing them might be useful.
dumptxoutset
was designed for this task (originally a contrib bash script), so it seems better to use it.
dumptxoutset
in 02fae3363511e96a76ff64a4513c7a7e8d8d4403