Merge pull request #1567 from ManfredKarrer/issue-1566

Fixes issue 1566
This commit is contained in:
Manfred Karrer 2018-06-14 15:00:01 +02:00 committed by GitHub
commit a35aeb6e85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -713,6 +713,13 @@ public class MainViewModel implements ViewModel {
checkForCorruptedDataBaseFiles();
String bitcoinLocalhostNodeKey = "bitcoinLocalhostNode";
if (bisqEnvironment.isBitcoinLocalhostNodeRunning() && preferences.showAgain(bitcoinLocalhostNodeKey)) {
new Popup<>().backgroundInfo(Res.get("popup.bitcoinLocalhostNode.msg"))
.dontShowAgainId(bitcoinLocalhostNodeKey)
.show();
}
allBasicServicesInitialized = true;
}