diff --git a/desktop/src/main/java/bisq/desktop/util/GUIUtil.java b/desktop/src/main/java/bisq/desktop/util/GUIUtil.java index 359b8f47..4dfc5259 100644 --- a/desktop/src/main/java/bisq/desktop/util/GUIUtil.java +++ b/desktop/src/main/java/bisq/desktop/util/GUIUtil.java @@ -725,12 +725,11 @@ public class GUIUtil { } public static boolean isBootstrappedOrShowPopup(P2PService p2PService) { - if (!p2PService.isBootstrapped()) { - new Popup().information(Res.get("popup.warning.notFullyConnected")).show(); - return false; + if (p2PService.isBootstrapped() && p2PService.getNumConnectedPeers().get() > 0) { + return true; } - - return true; + new Popup().information(Res.get("popup.warning.notFullyConnected")).show(); + return false; } public static boolean isReadyForTxBroadcastOrShowPopup(P2PService p2PService, CoreMoneroConnectionsService connectionService) {