File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ async fn it_should_create_and_fund_wallet(rig: &TestRig) -> anyhow::Result<()> {
32
32
33
33
let balance = rig. spaced . client . wallet_get_balance ( name) . await ?;
34
34
assert_eq ! (
35
- balance. confirmed . total ,
35
+ balance. balance ,
36
36
Amount :: from_sat( 1000_000 ) ,
37
37
"expected balance to match"
38
38
) ;
@@ -56,7 +56,7 @@ async fn it_should_handle_simple_reorg(rig: &TestRig) -> anyhow::Result<()> {
56
56
57
57
let balance = rig. spaced . client . wallet_get_balance ( name) . await ?;
58
58
assert_eq ! (
59
- balance. confirmed . total ,
59
+ balance. balance ,
60
60
Amount :: from_sat( 0 ) ,
61
61
"expected balance to match"
62
62
) ;
@@ -67,7 +67,7 @@ async fn it_should_handle_simple_reorg(rig: &TestRig) -> anyhow::Result<()> {
67
67
68
68
let balance = rig. spaced . client . wallet_get_balance ( name) . await ?;
69
69
assert_eq ! (
70
- balance. confirmed . total ,
70
+ balance. balance ,
71
71
Amount :: from_sat( 1000_000 ) ,
72
72
"expected balance to match"
73
73
) ;
You can’t perform that action at this time.
0 commit comments