Skip to content

refactor(chain)!: optimize anchor checking in CanonicalizationTask #270

refactor(chain)!: optimize anchor checking in CanonicalizationTask

refactor(chain)!: optimize anchor checking in CanonicalizationTask #270

GitHub Actions / Clippy Results failed Sep 22, 2025 in 1s

Clippy Results

1 error

Details

Results

Message level Amount
Internal compiler error 0
Error 1
Warning 0
Note 0
Help 0

Versions

  • rustc 1.88.0 (6b00bc388 2025-06-23)
  • cargo 1.88.0 (873a06493 2025-05-10)
  • clippy 0.1.88 (6b00bc3880 2025-06-23)

Annotations

Check failure on line 70 in crates/electrum/tests/test_electrum.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Results

variables can be used directly in the `format!` string

error: variables can be used directly in the `format!` string
  --> crates/electrum/tests/test_electrum.rs:70:28
   |
70 |             .map_err(|err| anyhow::anyhow!("LocalChain update error: {:?}", err))?;
   |                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
   = note: `-D clippy::uninlined-format-args` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::uninlined_format_args)]`
help: change this to
   |
70 -             .map_err(|err| anyhow::anyhow!("LocalChain update error: {:?}", err))?;
70 +             .map_err(|err| anyhow::anyhow!("LocalChain update error: {err:?}"))?;
   |