We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ba3fb0 commit e1321d3Copy full SHA for e1321d3
core/src/main/java/haveno/core/api/XmrConnectionService.java
@@ -445,6 +445,7 @@ public ReadOnlyObjectProperty<MoneroRpcConnection> connectionProperty() {
445
}
446
447
public boolean hasSufficientPeersForBroadcast() {
448
+ if (numConnections.get() < 0) return true; // we don't know how many connections we have, but that's expected with restricted node
449
return numConnections.get() >= getMinBroadcastConnections();
450
451
0 commit comments