From 9b5d7aa8e17eec60a2feb4bd29495779dc657dc9 Mon Sep 17 00:00:00 2001 From: patrini32 <171664803+patrini32@users.noreply.github.com> Date: Sat, 15 Jun 2024 15:45:57 +0300 Subject: [PATCH] better log message --- swap/src/cli/cancel_and_refund.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swap/src/cli/cancel_and_refund.rs b/swap/src/cli/cancel_and_refund.rs index 9d629695..8a300871 100644 --- a/swap/src/cli/cancel_and_refund.rs +++ b/swap/src/cli/cancel_and_refund.rs @@ -88,7 +88,7 @@ pub async fn cancel( .await?; Ok((txid, state)) } else { - bail!("Error while trying to submit cancel transaction, this shouldn't have happened {}", err); + bail!("Unhandled error while trying to submit cancel transaction, this shouldn't have happened {}", err); } } }