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 1792c542bc..b8e4264c66 100644 --- a/core/src/main/java/haveno/core/xmr/wallet/XmrWalletService.java +++ b/core/src/main/java/haveno/core/xmr/wallet/XmrWalletService.java @@ -300,7 +300,9 @@ public class XmrWalletService extends XmrWalletBase { } public boolean isProxyApplied(boolean wasWalletSynced) { - return xmrConnectionService.isProxyApplied() || preferences.isProxyApplied(wasWalletSynced); + MoneroRpcConnection connection = xmrConnectionService.getConnection(); + if (connection != null && connection.isOnion()) return true; // must use proxy if connected to onion + return xmrConnectionService.isProxyApplied() && preferences.isProxyApplied(wasWalletSynced); } public String getWalletPassword() {