From 0fc5a3ae0f4f4d8b80aa76993d83aa8d48632778 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Mon, 27 Feb 2023 17:31:15 +0000 Subject: [PATCH] Remove the `lightning-transaction-sync` MSRV Apparently it has dependencies that don't track an MSRV at all, so we can't practically enforce one in CI. --- .github/workflows/build.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a8f0aa69..d66498d4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,9 +15,7 @@ jobs: # 1.45.2 is MSRV for lightning-net-tokio, lightning-block-sync, lightning-background-processor 1.45.2, # 1.47.0 will be the MSRV for no-std builds using hashbrown once core2 is updated - 1.47.0, - # 1.59.0 is the MSRV for lightning-transaction-sync - 1.59.0] + 1.47.0] include: - toolchain: stable build-net-tokio: true @@ -73,11 +71,6 @@ jobs: build-futures: true build-no-std: true build-tx-sync: false - - toolchain: 1.59.0 - build-net-tokio: false - build-no-std: false - build-futures: false - build-tx-sync: true runs-on: ${{ matrix.platform }} steps: - name: Checkout source code -- 2.30.2