Skip to content

wip

wip #288

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

Clippy Results

2 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 2
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 321 in crates/bitcoind_rpc/examples/filter_iter_v2.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/bitcoind_rpc/examples/filter_iter_v2.rs:321:5
    |
321 |     println!("Scanned up to height: {}", last_height);
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = 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
    |
321 -     println!("Scanned up to height: {}", last_height);
321 +     println!("Scanned up to height: {last_height}");
    |

Check failure on line 25 in crates/bitcoind_rpc/examples/filter_iter_v2.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy Results

constant `NETWORK` is never used

error: constant `NETWORK` is never used
  --> crates/bitcoind_rpc/examples/filter_iter_v2.rs:25:7
   |
25 | const NETWORK: Network = Network::Signet;
   |       ^^^^^^^
   |
   = note: `-D dead-code` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(dead_code)]`