From f53a4e5fadef5e224c6656a089ea6ba35ce62387 Mon Sep 17 00:00:00 2001 From: woodser Date: Thu, 2 May 2024 10:10:00 -0400 Subject: [PATCH] show popup on error relaying withdraw tx --- .../haveno/desktop/main/funds/withdrawal/WithdrawalView.java | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/src/main/java/haveno/desktop/main/funds/withdrawal/WithdrawalView.java b/desktop/src/main/java/haveno/desktop/main/funds/withdrawal/WithdrawalView.java index 99edbca215..78318a1a23 100644 --- a/desktop/src/main/java/haveno/desktop/main/funds/withdrawal/WithdrawalView.java +++ b/desktop/src/main/java/haveno/desktop/main/funds/withdrawal/WithdrawalView.java @@ -327,6 +327,7 @@ public class WithdrawalView extends ActivatableView { })); } catch (Exception e) { e.printStackTrace(); + new Popup().warning(e.getMessage()).show(); } }