Merge #533: doc/ci: Use Bitcoin Core 24.1

1eb7c08b4525861e93d4b9889499d7ab1bca912d doc/ci: Use Bitcoin Core 24.1 (fanquake)

Pull request description:

  Leave minimum supported version as 24.0.1.

ACKs for top commit:
  darosior:
    ACK 1eb7c08b4525861e93d4b9889499d7ab1bca912d

Tree-SHA512: 9316932eb256884da33b7f975b53bb37a1a791af3b77fc9bbc1bba2a74547c91c122598760a4baa241092f29418d766930b3c6fac49e246437b4fff4c38d02a1
This commit is contained in:
Antoine Poinsot 2023-05-22 17:40:56 +02:00
commit 32dbb9490e
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304
2 changed files with 10 additions and 10 deletions

View File

@ -43,10 +43,10 @@ task:
set -xe
# Download the bitcoind binary
curl -O https://bitcoincore.org/bin/bitcoin-core-24.0.1/bitcoin-24.0.1-x86_64-linux-gnu.tar.gz
echo "49df6e444515d457ea0b885d66f521f2a26ca92ccf73d5296082e633544253bf bitcoin-24.0.1-x86_64-linux-gnu.tar.gz" | sha256sum -c
tar -xzf bitcoin-24.0.1-x86_64-linux-gnu.tar.gz
export BITCOIND_PATH=bitcoin-24.0.1/bin/bitcoind
curl -O https://bitcoincore.org/bin/bitcoin-core-24.1/bitcoin-24.1-x86_64-linux-gnu.tar.gz
echo "c112af3d19cca7f5b5f942708ca4d522110d8e1dc1c0f8d3077f531c94e5f00f bitcoin-24.1-x86_64-linux-gnu.tar.gz" | sha256sum -c
tar -xzf bitcoin-24.1-x86_64-linux-gnu.tar.gz
export BITCOIND_PATH=bitcoin-24.1/bin/bitcoind
# The misc tests have a backward compat test that need the path to a previous version of Liana.
# For now it requires using 0.3.

View File

@ -59,10 +59,10 @@ other platforms refer to
[https://bitcoincore.org/en/download/#verify-your-download](https://bitcoincore.org/en/download).
1. Download the `bitcoind` binary from [the official website of the Bitcoin Core
project](https://bitcoincore.org/bin/bitcoin-core-24.0.1/) according to your platform (in the context
of this guide, it is most likely `bitcoin-24.0.1-x86_64-linux-gnu.tar.gz`), and associated SHA256SUMS and SHA256SUMS.asc verification files.
project](https://bitcoincore.org/bin/bitcoin-core-24.1/) according to your platform (in the context
of this guide, it is most likely `bitcoin-24.1-x86_64-linux-gnu.tar.gz`), and associated SHA256SUMS and SHA256SUMS.asc verification files.
```
curl -O https://bitcoincore.org/bin/bitcoin-core-24.0.1/bitcoin-24.0.1-x86_64-linux-gnu.tar.gz -O https://bitcoincore.org/bin/bitcoin-core-24.0.1/SHA256SUMS -O https://bitcoincore.org/bin/bitcoin-core-24.0.1/SHA256SUMS.asc
curl -O https://bitcoincore.org/bin/bitcoin-core-24.1/bitcoin-24.1-x86_64-linux-gnu.tar.gz -O https://bitcoincore.org/bin/bitcoin-core-24.1/SHA256SUMS -O https://bitcoincore.org/bin/bitcoin-core-24.1/SHA256SUMS.asc
```
2. Verify the hash of the downloaded archive.
@ -80,21 +80,21 @@ gpg --verify SHA256SUMS.asc
4. Finally, uncompress the archive to get access to the `bitcoind` binary.
```
tar -xzf bitcoin-24.0.1-x86_64-linux-gnu.tar.gz
tar -xzf bitcoin-24.1-x86_64-linux-gnu.tar.gz
```
### Start `bitcoind` on signet
Run `bitcoind` in the background on the public signet network. On Linux:
```
./bitcoin-24.0.1/bin/bitcoind -signet -daemon
./bitcoin-24.1/bin/bitcoind -signet -daemon
```
If it is the first time you start a signet Bitcoin on this machine it will take a few minutes to
synchronize (depends on your connection and hardware of course, but it shouldn't take longer than a
handful of minutes). You can track the progress using the `getblockchaininfo` command. On Linux:
```
./bitcoin-24.0.1/bin/bitcoin-cli -signet getblockchaininfo
./bitcoin-24.1/bin/bitcoin-cli -signet getblockchaininfo
```
**You do not need to wait for full synchronisation before moving on to the next step.**