From 865e351f96bb90f05ad3f9966b631232192778ef Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sat, 6 Sep 2025 04:09:39 -0400 Subject: [PATCH] Bitcoin 29.1 Benefits from `v2transport`, `mempoolfullrbf`, and potentially TRUC. --- .github/actions/bitcoin/action.yml | 2 +- .github/actions/test-dependencies/action.yml | 2 +- orchestration/src/networks/bitcoin.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/bitcoin/action.yml b/.github/actions/bitcoin/action.yml index 5a5cd068..b2b36ecf 100644 --- a/.github/actions/bitcoin/action.yml +++ b/.github/actions/bitcoin/action.yml @@ -5,7 +5,7 @@ inputs: version: description: "Version to download and run" required: false - default: "27.0" + default: "29.1" runs: using: "composite" diff --git a/.github/actions/test-dependencies/action.yml b/.github/actions/test-dependencies/action.yml index c2a3ba59..7e63b877 100644 --- a/.github/actions/test-dependencies/action.yml +++ b/.github/actions/test-dependencies/action.yml @@ -10,7 +10,7 @@ inputs: bitcoin-version: description: "Bitcoin version to download and run as a regtest node" required: false - default: "27.1" + default: "29.1" runs: using: "composite" diff --git a/orchestration/src/networks/bitcoin.rs b/orchestration/src/networks/bitcoin.rs index 9136c997..c26b27d5 100644 --- a/orchestration/src/networks/bitcoin.rs +++ b/orchestration/src/networks/bitcoin.rs @@ -7,7 +7,7 @@ pub fn bitcoin(orchestration_path: &Path, network: Network) { const DOWNLOAD_BITCOIN: &str = r#" FROM alpine:latest AS bitcoin -ENV BITCOIN_VERSION=27.1 +ENV BITCOIN_VERSION=29.1 RUN apk --no-cache add wget git gnupg