diff --git a/src/main/java/bisq/desktop/main/account/content/altcoinaccounts/AltCoinAccountsView.java b/src/main/java/bisq/desktop/main/account/content/altcoinaccounts/AltCoinAccountsView.java index d6ab9da26f2..8914e3fb3fd 100644 --- a/src/main/java/bisq/desktop/main/account/content/altcoinaccounts/AltCoinAccountsView.java +++ b/src/main/java/bisq/desktop/main/account/content/altcoinaccounts/AltCoinAccountsView.java @@ -151,6 +151,11 @@ private void onSaveNewAccount(PaymentAccount paymentAccount) { .useIUnderstandButton() .show(); break; + case "BLUR": + new Popup<>().information(Res.get("account.altcoin.popup.blur.msg")) + .useIUnderstandButton() + .show(); + break; case "CCX": new Popup<>().information(Res.get("account.altcoin.popup.ccx.msg")) .useIUnderstandButton() @@ -334,4 +339,3 @@ private void removeAccountRows() { } } -