Skip to content

example(wallet): update esplora examples to use full_scan and sync re… #521

example(wallet): update esplora examples to use full_scan and sync re…

example(wallet): update esplora examples to use full_scan and sync re… #521

GitHub Actions / clippy failed Jan 10, 2024 in 0s

clippy

1 error

Details

Results

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

Versions

  • rustc 1.75.0 (82e1608df 2023-12-21)
  • cargo 1.75.0 (1d8b05cdd 2023-11-20)
  • clippy 0.1.75 (82e1608 2023-12-21)

Annotations

Check failure on line 2383 in crates/bdk/src/wallet/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this `.into_iter()` call is equivalent to `.iter()` and will not consume the `BTreeMap`

error: this `.into_iter()` call is equivalent to `.iter()` and will not consume the `BTreeMap`
    --> crates/bdk/src/wallet/mod.rs:2383:18
     |
2383 |                 .into_iter()
     |                  ^^^^^^^^^ help: call directly: `iter`
     |
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_ref
     = note: `-D clippy::into-iter-on-ref` implied by `-D warnings`
     = help: to override `-D warnings` add `#[allow(clippy::into_iter_on_ref)]`