Merge #541: doc/ci: Use Bitcoin Core 25.0
5b63fe813869af82bf70a027d38e32c15bd219fa doc/ci: Use Bitcoin Core 25.0 (fanquake)
Pull request description:
Leave minimum supported version as 24.0.1.
ACKs for top commit:
darosior:
ACK 5b63fe813869af82bf70a027d38e32c15bd219fa
Tree-SHA512: 2ec14693cc4ece42aab398c1e06722cd92799ee5806c3f3c526ae9f34d70d6fddc23feb66b72054ad49edf7aa92f717918f43e9745a2a8d6a48dd3a3463fb075
This commit is contained in:
commit
210322c143
@ -43,10 +43,10 @@ task:
|
||||
set -xe
|
||||
|
||||
# Download the bitcoind binary
|
||||
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
|
||||
curl -O https://bitcoincore.org/bin/bitcoin-core-25.0/bitcoin-25.0-x86_64-linux-gnu.tar.gz
|
||||
echo "33930d432593e49d58a9bff4c30078823e9af5d98594d2935862788ce8a20aec bitcoin-25.0-x86_64-linux-gnu.tar.gz" | sha256sum -c
|
||||
tar -xzf bitcoin-25.0-x86_64-linux-gnu.tar.gz
|
||||
export BITCOIND_PATH=bitcoin-25.0/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.
|
||||
|
||||
12
doc/TRY.md
12
doc/TRY.md
@ -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.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.
|
||||
project](https://bitcoincore.org/bin/bitcoin-core-25.0/) according to your platform (in the context
|
||||
of this guide, it is most likely `bitcoin-25.0-x86_64-linux-gnu.tar.gz`), and associated SHA256SUMS and SHA256SUMS.asc verification files.
|
||||
```
|
||||
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
|
||||
curl -O https://bitcoincore.org/bin/bitcoin-core-25.0/bitcoin-25.0-x86_64-linux-gnu.tar.gz -O https://bitcoincore.org/bin/bitcoin-core-25.0/SHA256SUMS -O https://bitcoincore.org/bin/bitcoin-core-25.0/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.1-x86_64-linux-gnu.tar.gz
|
||||
tar -xzf bitcoin-25.0-x86_64-linux-gnu.tar.gz
|
||||
```
|
||||
|
||||
### Start `bitcoind` on signet
|
||||
|
||||
Run `bitcoind` in the background on the public signet network. On Linux:
|
||||
```
|
||||
./bitcoin-24.1/bin/bitcoind -signet -daemon
|
||||
./bitcoin-25.0/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.1/bin/bitcoin-cli -signet getblockchaininfo
|
||||
./bitcoin-25.0/bin/bitcoin-cli -signet getblockchaininfo
|
||||
```
|
||||
|
||||
**You do not need to wait for full synchronisation before moving on to the next step.**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user