Add warning log

This commit is contained in:
Manfred Karrer 2018-09-23 13:13:38 -05:00
parent ba09fbf18c
commit ef289a2898
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46

View File

@ -462,6 +462,8 @@ public class GUIUtil {
new Popup<>().information(Res.get("popup.warning.notSufficientConnectionsToBtcNetwork", walletsSetup.getMinBroadcastConnections())).show();
else if (!walletsSetup.isDownloadComplete())
new Popup<>().information(Res.get("popup.warning.downloadNotComplete")).show();
else
log.warn("showNotReadyForTxBroadcastPopups called but no case matched. This should never happen if isReadyForTxBroadcast was called before.");
}
public static void requestFocus(Node node) {