We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83320f2 commit 317ff28Copy full SHA for 317ff28
src/wallet/test/list_unspents_vanilla.rs
@@ -18,6 +18,8 @@ fn success() {
18
assert!(bak_info_after.is_none());
19
assert_eq!(unspent_list.len(), 0);
20
21
+ stop_mining();
22
+
23
send_to_address(test_get_address(&wallet));
24
25
// one unspent, no confirmations
@@ -26,7 +28,7 @@ fn success() {
26
28
let unspent_list = test_list_unspents_vanilla(&wallet, &online, Some(0));
27
29
assert_eq!(unspent_list.len(), 1);
30
- mine(false);
31
+ mine(true);
32
33
// one unspent, 1 confirmation
34
let unspent_list = test_list_unspents_vanilla(&wallet, &online, None);
0 commit comments