Add merit implementation

This commit is contained in:
Manfred Karrer 2018-06-19 19:51:57 +02:00
parent aab1f579ab
commit a4debc7c87
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46

View File

@ -327,10 +327,14 @@ public class MainViewModel implements ViewModel, BisqSetup.BisqSetupCompleteList
.information(Res.get("popup.securityRecommendation.msg"))
.dontShowAgainId(key)
.show());
bisqSetup.setDisplayLocalhostHandler(key ->
bisqSetup.setDisplayLocalhostHandler(key -> {
if (!DevEnv.isDevMode()) {
new Popup<>().backgroundInfo(Res.get("popup.bitcoinLocalhostNode.msg"))
.dontShowAgainId(key)
.show());
.show();
}
});
bisqSetup.setWrongOSArchitectureHandler(msg -> new Popup<>().warning(msg).show());
corruptedDatabaseFilesHandler.getCorruptedDatabaseFiles().ifPresent(files -> {