mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-20 10:22:18 +01:00
Add merit implementation
This commit is contained in:
parent
aab1f579ab
commit
a4debc7c87
@ -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 -> {
|
||||
|
Loading…
Reference in New Issue
Block a user