File tree Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ defaults:
21
21
shell : bash
22
22
23
23
env :
24
- BITCOIN_VERSION : " 26 "
24
+ BITCOIN_VERSION : " 27 "
25
25
26
26
# If you change this value, please change it in the following files as well:
27
27
# /.travis.yml
Original file line number Diff line number Diff line change 116
116
their master key's
117
117
fingerprint] ( https://github.com/lightningnetwork/lnd/pull/8630 ) .
118
118
119
+ * [ Fixed a bug in ` btcd ` that caused an incompatibility with
120
+ ` bitcoind v27.0 ` ] ( https://github.com/lightningnetwork/lnd/pull/8573 ) .
121
+
119
122
# New Features
120
123
## Functional Enhancements
121
124
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ require (
4
4
github.com/NebulousLabs/go-upnp v0.0.0-20180202185039-29b680b06c82
5
5
github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344
6
6
github.com/andybalholm/brotli v1.0.4
7
- github.com/btcsuite/btcd v0.24.1-0.20240318151728-2fc99e0496d2
7
+ github.com/btcsuite/btcd v0.24.2-beta.rc1.0.20240403021926-ae5533602c46
8
8
github.com/btcsuite/btcd/btcec/v2 v2.3.2
9
9
github.com/btcsuite/btcd/btcutil v1.1.5
10
10
github.com/btcsuite/btcd/btcutil/psbt v1.1.8
Original file line number Diff line number Diff line change @@ -73,8 +73,8 @@ github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6r
73
73
github.com/btcsuite/btcd v0.20.1-beta /go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ =
74
74
github.com/btcsuite/btcd v0.22.0-beta.0.20220111032746-97732e52810c /go.mod h1:tjmYdS6MLJ5/s0Fj4DbLgSbDHbEqLJrtnHecBFkdz5M =
75
75
github.com/btcsuite/btcd v0.23.5-0.20231215221805-96c9fd8078fd /go.mod h1:nm3Bko6zh6bWP60UxwoT5LzdGJsQJaPo6HjduXq9p6A =
76
- github.com/btcsuite/btcd v0.24.1-0.20240318151728-2fc99e0496d2 h1:b7EiiYEZypI2id3516ptqjzhUfFAgNfF4YVtxikAg6Y =
77
- github.com/btcsuite/btcd v0.24.1-0.20240318151728-2fc99e0496d2 /go.mod h1:5C8ChTkl5ejr3WHj8tkQSCmydiMEPB0ZhQhehpq7Dgg =
76
+ github.com/btcsuite/btcd v0.24.2-beta.rc1.0.20240403021926-ae5533602c46 h1:tjpNTdZNQqE14menwDGAxWfzN0DFHVTXFEyEL8yvA/4 =
77
+ github.com/btcsuite/btcd v0.24.2-beta.rc1.0.20240403021926-ae5533602c46 /go.mod h1:5C8ChTkl5ejr3WHj8tkQSCmydiMEPB0ZhQhehpq7Dgg =
78
78
github.com/btcsuite/btcd/btcec/v2 v2.1.0 /go.mod h1:2VzYrv4Gm4apmbVVsSq5bqf1Ec8v56E48Vt0Y/umPgA =
79
79
github.com/btcsuite/btcd/btcec/v2 v2.1.3 /go.mod h1:ctjw4H1kknNJmRN4iP1R7bTQ+v3GJkZBd6mui8ZsAZE =
80
80
github.com/btcsuite/btcd/btcec/v2 v2.3.2 h1:5n0X6hX0Zk+6omWcihdYvdAlGf2DfasC0GMf7DClJ3U =
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ if [ -z "$BITCOIND_VERSION" ]; then
10
10
exit 1
11
11
fi
12
12
13
- docker pull lightninglabs/bitcoin-core:$BITCOIND_VERSION
14
- CONTAINER_ID=$( docker create lightninglabs/bitcoin-core:$BITCOIND_VERSION )
15
- sudo docker cp $CONTAINER_ID :/opt/bitcoin-$BITCOIND_VERSION .0/bin/bitcoind /usr/local/bin/bitcoind
13
+ docker pull lightninglabs/bitcoin-core:${ BITCOIND_VERSION}
14
+ CONTAINER_ID=$( docker create lightninglabs/bitcoin-core:${ BITCOIND_VERSION} )
15
+ sudo docker cp $CONTAINER_ID :/opt/bitcoin-${ BITCOIND_VERSION} .0/bin/bitcoind /usr/local/bin/bitcoind
16
16
docker rm $CONTAINER_ID
You can’t perform that action at this time.
0 commit comments