You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge #1990: How can we be happy if clippy is not?
f4e158a chore(esplora): Allow `dead_code` for helper methods (志宇)
cb7a980 chore: Make clippy happy (志宇)
93657a0 chore: `.gitignore` Exclude criterion results (志宇)
Pull request description:
### Description
I made clippy happy.
### Checklists
#### All Submissions:
* [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md)
Top commit has no ACKs.
Tree-SHA512: b28afe91dd5d47dfc83a4d14bc47d8efa1e5077448cbbddd1fd74a74232a120e0823d778fa007cde7cfbea52d07ee1f5e719590a56fa143ec9288efc4e56afe1
debug_assert!(_inserted,"replenish lookahead: must not have existing spk: keychain={:?}, lookahead={}, next_index={}", keychain, lookahead, next_index);
597
+
debug_assert!(_inserted,"replenish lookahead: must not have existing spk: keychain={keychain:?}, lookahead={lookahead}, next_index={next_index}");
598
598
}
599
599
}else{
600
600
let spk_iter = SpkIterator::new_with_range(descriptor, next_index..stop_index);
debug_assert!(_inserted,"replenish lookahead: must not have existing spk: keychain={:?}, lookahead={}, next_index={}", keychain, lookahead, next_index);
605
+
debug_assert!(_inserted,"replenish lookahead: must not have existing spk: keychain={keychain:?}, lookahead={lookahead}, next_index={next_index}");
0 commit comments