Skip to content

Commit

Permalink
fix: fixes a compile error on stable rustc
Browse files Browse the repository at this point in the history
changed
	+ use<'_>
to
	+ '_
  • Loading branch information
dan-da committed Nov 13, 2024
1 parent 13878e7 commit 430afd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/models/state/wallet/wallet_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,8 @@ impl WalletState {
pub(crate) fn mempool_balance_updates(
&self,
) -> (
impl Iterator<Item = (TransactionKernelId, NeptuneCoins)> + use<'_>,
impl Iterator<Item = (TransactionKernelId, NeptuneCoins)> + use<'_>,
impl Iterator<Item = (TransactionKernelId, NeptuneCoins)> + '_,
impl Iterator<Item = (TransactionKernelId, NeptuneCoins)> + '_,
) {
let incoming = self.mempool_spent_utxos.iter().map(|(txkid, sender_data)| {
(
Expand Down

0 comments on commit 430afd6

Please sign in to comment.