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 52cf6d3 commit 13c8e9fCopy full SHA for 13c8e9f
integration_test/tests/wallet.rs
@@ -87,7 +87,11 @@ pub fn get_address_info() {
87
fn get_balance() {
88
let node = Node::new_with_default_wallet();
89
let json = node.client.get_balance().expect("getbalance");
90
- assert!(json.into_model().is_ok())
+ assert!(json.into_model().is_ok());
91
+
92
+ node.fund_wallet();
93
+ let json = node.client.get_balance().expect("getbalance");
94
95
}
96
97
#[test]
0 commit comments