diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-01-31 08:48:51 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-01-31 08:48:54 -0500 |
commit | 895fbd768f0c89cea3f78acac58b233d4e3a145e (patch) | |
tree | 4e7c192b07530b326e53f072366ff9ec959ee00d | |
parent | 216f9a42e689b49a13387efff7a78d0d661b5d12 (diff) | |
parent | 7f968ae10712d8e4ff3794c59a974d96c6e20f80 (diff) |
Merge #12309: doc: Explain how to update chainTxData in release process
7f968ae107 doc: Explain how to update chainTxData in release process (Wladimir J. van der Laan)
Pull request description:
Adds a short explanation how to update chainTxData to the release process. Mention where to get the data, and link to an example.
Tree-SHA512: 66b0eb12a25afb7b1da0788c8f9f9701d566cb7ce55899402440a57bef0e177b55e926442d3c8aa482299abe7c48ab94735d501c37f0a11fefb86e2fc2e33d9b
-rw-r--r-- | doc/release-process.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/release-process.md b/doc/release-process.md index f429b4bbdb..f09649fe70 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -23,7 +23,8 @@ Before every major release: * Update hardcoded [seeds](/contrib/seeds/README.md), see [this pull request](https://github.com/bitcoin/bitcoin/pull/7415) for an example. * Update [`BLOCK_CHAIN_SIZE`](/src/qt/intro.cpp) to the current size plus some overhead. -* Update `src/chainparams.cpp` chainTxData with statistics about the transaction count and rate. +* Update `src/chainparams.cpp` chainTxData with statistics about the transaction count and rate. Use the output of the RPC `getchaintxstats`, see + [this pull request](https://github.com/bitcoin/bitcoin/pull/12270) for an example. * Update version of `contrib/gitian-descriptors/*.yml`: usually one'd want to do this on master after branching off the release - but be sure to at least do it before a new major release ### First time / New builders |