Skip to content

Commit

Permalink
GitHub+scripts: use bitcoind v27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guggero committed Apr 18, 2024
1 parent 2ccf58e commit 817ddb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ defaults:
shell: bash

env:
BITCOIN_VERSION: "26"
BITCOIN_VERSION: "27"

# If you change this value, please change it in the following files as well:
# /.travis.yml
Expand Down
6 changes: 3 additions & 3 deletions scripts/install_bitcoind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [ -z "$BITCOIND_VERSION" ]; then
exit 1
fi

docker pull lightninglabs/bitcoin-core:$BITCOIND_VERSION
CONTAINER_ID=$(docker create lightninglabs/bitcoin-core:$BITCOIND_VERSION)
sudo docker cp $CONTAINER_ID:/opt/bitcoin-$BITCOIND_VERSION.0/bin/bitcoind /usr/local/bin/bitcoind
docker pull lightninglabs/bitcoin-core:${BITCOIND_VERSION}
CONTAINER_ID=$(docker create lightninglabs/bitcoin-core:${BITCOIND_VERSION})
sudo docker cp $CONTAINER_ID:/opt/bitcoin-${BITCOIND_VERSION}.0/bin/bitcoind /usr/local/bin/bitcoind
docker rm $CONTAINER_ID

0 comments on commit 817ddb8

Please sign in to comment.