Skip to content

Commit

Permalink
fix nightly build
Browse files Browse the repository at this point in the history
  • Loading branch information
zoedberg committed Nov 25, 2024
1 parent 139d936 commit c2c8c4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ impl<K, D: Descriptor<K>, L2: Layer2> Wallet<K, D, L2> {
&'a self,
up_to: Sats,
selector: impl Fn(&WalletUtxo) -> bool + 'a,
) -> impl Iterator<Item = Outpoint> + '_ {
) -> impl Iterator<Item = Outpoint> + 'a {

Check warning on line 628 in src/wallet.rs

View check run for this annotation

Codecov / codecov/patch

src/wallet.rs#L628

Added line #L628 was not covered by tests
let mut selected = Sats::ZERO;
self.utxos()
.filter(selector)
Expand Down

0 comments on commit c2c8c4a

Please sign in to comment.