diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 2b3fa4fd7..e97e5bdb7 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -20,7 +20,7 @@ jobs: with: toolchain: nightly-2025-11-27 override: true - cache: true + cache: false components: llvm-tools-preview - name: Install cargo-llvm-cov run: if [[ ! -e ~/.cargo/bin/cargo-llvm-cov ]]; then cargo install cargo-llvm-cov; fi diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 6c8a01ff8..64cbdc281 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -41,7 +41,7 @@ jobs: with: toolchain: ${{ matrix.rust.version }} override: true - cache: true + cache: false - name: Pin dependencies for MSRV if: matrix.rust.version == '1.85.0' run: ./ci/pin-msrv.sh @@ -66,7 +66,7 @@ jobs: with: toolchain: ${{ needs.prepare.outputs.rust_version }} override: true - cache: true + cache: false # target: "thumbv6m-none-eabi" - name: Check bdk_chain working-directory: ./crates/chain @@ -98,7 +98,7 @@ jobs: with: toolchain: ${{ needs.prepare.outputs.rust_version }} override: true - cache: true + cache: false target: "wasm32-unknown-unknown" - name: Check esplora working-directory: ./crates/esplora @@ -117,7 +117,7 @@ jobs: with: toolchain: nightly override: true - cache: true + cache: false components: rustfmt - name: Check fmt run: cargo fmt --all --check @@ -137,7 +137,7 @@ jobs: toolchain: ${{ needs.prepare.outputs.rust_version }} components: clippy override: true - cache: true + cache: false - name: Clippy run: cargo clippy --all-features --all-targets -- -D warnings @@ -162,7 +162,7 @@ jobs: with: toolchain: ${{ needs.prepare.outputs.rust_version }} override: true - cache: true + cache: false - name: Build working-directory: examples/${{ matrix.example-dir }} run: cargo build diff --git a/.github/workflows/zizmor.yml b/.github/workflows/zizmor.yml index 143005e1b..8f6eed06c 100644 --- a/.github/workflows/zizmor.yml +++ b/.github/workflows/zizmor.yml @@ -17,9 +17,6 @@ jobs: with: persist-credentials: false - - name: Rust Cache - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 - - name: Install zizmor run: cargo install zizmor --locked --version 1.6.0 diff --git a/crates/esplora/src/async_ext.rs b/crates/esplora/src/async_ext.rs index d504a4723..0c2f8120a 100644 --- a/crates/esplora/src/async_ext.rs +++ b/crates/esplora/src/async_ext.rs @@ -184,10 +184,10 @@ async fn fetch_latest_blocks( client: &esplora_client::AsyncClient, ) -> Result, Error> { Ok(client - .get_blocks(None) + .get_block_infos(None) .await? .into_iter() - .map(|b| (b.time.height, b.id)) + .map(|b| (b.height, b.id)) .collect()) } diff --git a/crates/esplora/src/blocking_ext.rs b/crates/esplora/src/blocking_ext.rs index 9413c14af..c1bcf29a8 100644 --- a/crates/esplora/src/blocking_ext.rs +++ b/crates/esplora/src/blocking_ext.rs @@ -170,9 +170,9 @@ fn fetch_latest_blocks( client: &esplora_client::BlockingClient, ) -> Result, Error> { Ok(client - .get_blocks(None)? + .get_block_infos(None)? .into_iter() - .map(|b| (b.time.height, b.id)) + .map(|b| (b.height, b.id)) .collect()) }