From eedbce8d5c8e0d23a1efbbaa3b86298e83142626 Mon Sep 17 00:00:00 2001 From: ardocrat Date: Sat, 18 May 2024 22:14:03 +0300 Subject: [PATCH] wallet: do not check cancel_tx result --- src/wallet/wallet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet.rs b/src/wallet/wallet.rs index 4c62641..f8bf2d9 100644 --- a/src/wallet/wallet.rs +++ b/src/wallet/wallet.rs @@ -915,7 +915,7 @@ impl Wallet { thread::sleep(Duration::from_millis(1000)); } let instance = wallet.instance.clone().unwrap(); - cancel_tx(instance, None, &None, Some(id), None).unwrap(); + let _ = cancel_tx(instance, None, &None, Some(id), None); // Setup posting flag, and ability to finalize. { let mut w_data = wallet.data.write();