build: update CI to build against bitcoind 23

This commit is contained in:
Olaoluwa Osuntokun 2022-04-26 16:06:09 -07:00
parent b5fed36465
commit dec389d54f
No known key found for this signature in database
GPG Key ID: 3BBD59E99B280306
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)