Merge pull request #6465 from Roasbeef/bitcoind23

build: update CI to build against bitcoind 23
This commit is contained in:
Oliver Gugger 2022-05-05 13:24:50 +02:00 committed by GitHub
commit f8dd032de5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ env:
# go needs absolute directories, using the $HOME variable doesn't work here.
GOCACHE: /home/runner/work/go/pkg/build
GOPATH: /home/runner/work/go
BITCOIN_VERSION: "22.0"
BITCOIN_VERSION: "23.0"
# If you change this value, please change it in the following files as well:
# /.travis.yml

View file

@ -2,7 +2,7 @@
set -ev
BITCOIND_VERSION=${BITCOIN_VERSION:-22.0}
BITCOIND_VERSION=${BITCOIN_VERSION:-23.0}
docker pull lightninglabs/bitcoin-core:$BITCOIND_VERSION
CONTAINER_ID=$(docker create lightninglabs/bitcoin-core:$BITCOIND_VERSION)