Skip to content

Commit bd71f03

Browse files
committed
doc: update example pulls in release-process.md
1 parent b2ede22 commit bd71f03

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/release-process.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ Release Process
2828

2929
#### Before branch-off
3030

31-
* Update hardcoded [seeds](/contrib/seeds/README.md), see [this pull request](https://github.com/bitcoin/bitcoin/pull/7415) for an example.
31+
* Update hardcoded [seeds](/contrib/seeds/README.md), see [this pull request](https://github.com/bitcoin/bitcoin/pull/27488) for an example.
3232
* Update the following variables in [`src/kernel/chainparams.cpp`](/src/kernel/chainparams.cpp) for mainnet, testnet, and signet:
3333
- `m_assumed_blockchain_size` and `m_assumed_chain_state_size` with the current size plus some overhead (see
3434
[this](#how-to-calculate-assumed-blockchain-and-chain-state-size) for information on how to calculate them).
3535
- The following updates should be reviewed with `reindex-chainstate` and `assumevalid=0` to catch any defect
3636
that causes rejection of blocks in the past history.
3737
- `chainTxData` with statistics about the transaction count and rate. Use the output of the `getchaintxstats` RPC with an
3838
`nBlocks` of 4096 (28 days) and a `bestblockhash` of RPC `getbestblockhash`; see
39-
[this pull request](https://github.com/bitcoin/bitcoin/pull/20263) for an example. Reviewers can verify the results by running
39+
[this pull request](https://github.com/bitcoin/bitcoin/pull/28591) for an example. Reviewers can verify the results by running
4040
`getchaintxstats <window_block_count> <window_final_block_hash>` with the `window_block_count` and `window_final_block_hash` from your output.
4141
- `defaultAssumeValid` with the output of RPC `getblockhash` using the `height` of `window_final_block_height` above
4242
(and update the block height comment with that height), taking into account the following:
@@ -45,7 +45,7 @@ Release Process
4545
- `nMinimumChainWork` with the "chainwork" value of RPC `getblockheader` using the same height as that selected for the previous step.
4646
* Consider updating the headers synchronization tuning parameters to account for the chainparams updates.
4747
The optimal values change very slowly, so this isn't strictly necessary every release, but doing so doesn't hurt.
48-
- Update configuration variables in [`contrib/devtools/headerssync-params.py`](contrib/devtools/headerssync-params.py):
48+
- Update configuration variables in [`contrib/devtools/headerssync-params.py`](/contrib/devtools/headerssync-params.py):
4949
- Set `TIME` to the software's expected supported lifetime -- after this time, its ability to defend against a high bandwidth timewarp attacker will begin to degrade.
5050
- Set `MINCHAINWORK_HEADERS` to the height used for the `nMinimumChainWork` calculation above.
5151
- Check that the other variables still look reasonable.

0 commit comments

Comments
 (0)