Dont show bitcoinLocalhostNode popup if dev mode

This commit is contained in:
Manfred Karrer 2018-06-20 08:44:35 +02:00
parent a35aeb6e85
commit 511458b146
No known key found for this signature in database
GPG key ID: 401250966A6B2C46

View file

@ -714,7 +714,7 @@ public class MainViewModel implements ViewModel {
checkForCorruptedDataBaseFiles();
String bitcoinLocalhostNodeKey = "bitcoinLocalhostNode";
if (bisqEnvironment.isBitcoinLocalhostNodeRunning() && preferences.showAgain(bitcoinLocalhostNodeKey)) {
if (bisqEnvironment.isBitcoinLocalhostNodeRunning() && preferences.showAgain(bitcoinLocalhostNodeKey) && !DevEnv.isDevMode()) {
new Popup<>().backgroundInfo(Res.get("popup.bitcoinLocalhostNode.msg"))
.dontShowAgainId(bitcoinLocalhostNodeKey)
.show();