From 96bcd7547ddf032d665846686a8d16d5c3476954 Mon Sep 17 00:00:00 2001 From: woodser Date: Sat, 6 Jul 2024 08:46:45 -0400 Subject: [PATCH] ignore error syncing with progress on shut down --- core/src/main/java/haveno/core/xmr/wallet/XmrWalletService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/haveno/core/xmr/wallet/XmrWalletService.java b/core/src/main/java/haveno/core/xmr/wallet/XmrWalletService.java index 11668929..17883a36 100644 --- a/core/src/main/java/haveno/core/xmr/wallet/XmrWalletService.java +++ b/core/src/main/java/haveno/core/xmr/wallet/XmrWalletService.java @@ -1465,7 +1465,7 @@ public class XmrWalletService { try { height = wallet.getHeight(); // can get read timeout while syncing } catch (Exception e) { - e.printStackTrace(); + if (!isShutDownStarted) e.printStackTrace(); return; } if (height < xmrConnectionService.getTargetHeight()) updateSyncProgress(height);