Skip to content

Commit

Permalink
Fix wallet test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sword-Smith committed Oct 12, 2024
1 parent e7247bf commit 98c96f8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/models/state/wallet/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -937,6 +937,17 @@ mod wallet_tests {
"Preminer must have spent 15: 12 + 1 for sent, 2 for fees"
);

let expected_utxos_alice = alice
.lock_guard()
.await
.wallet_state
.extract_expected_utxos(receiver_data_to_alice, UtxoNotifier::Cli);
alice
.lock_guard_mut()
.await
.wallet_state
.add_expected_utxos(expected_utxos_alice)
.await;
alice
.lock_guard_mut()
.await
Expand Down

0 comments on commit 98c96f8

Please sign in to comment.