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 127dfeb commit 479289bCopy full SHA for 479289b
1 file changed
orange-sdk/tests/integration_tests.rs
@@ -982,8 +982,11 @@ async fn test_pay_onchain_from_channel() {
982
let bal = wallet.get_balance().await.unwrap();
983
// fixme change to exact match once we have the real feee
984
assert!(
985
- bal.available_balance() <
986
- starting_bal.available_balance().saturating_sub(send_amount).saturating_sub(payment.fee.unwrap())
+ bal.available_balance()
+ < starting_bal
987
+ .available_balance()
988
+ .saturating_sub(send_amount)
989
+ .saturating_sub(payment.fee.unwrap())
990
);
991
992
// Wait for third party node to receive it
0 commit comments