From c5af0313546fda72f83bc2964dd5f4e145b260f8 Mon Sep 17 00:00:00 2001 From: fosse Date: Mon, 21 Aug 2023 14:42:53 -0400 Subject: [PATCH] fix manage pow nodes setting appearing on other wallets --- lib/view_model/dashboard/dashboard_view_model.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/view_model/dashboard/dashboard_view_model.dart b/lib/view_model/dashboard/dashboard_view_model.dart index 701105b91..bd0d50b18 100644 --- a/lib/view_model/dashboard/dashboard_view_model.dart +++ b/lib/view_model/dashboard/dashboard_view_model.dart @@ -312,7 +312,7 @@ abstract class DashboardViewModelBase with Store { bool isOutdatedElectrumWallet; @computed - bool get hasPowNodes => wallet.type == WalletType.nano || wallet.type != WalletType.banano; + bool get hasPowNodes => wallet.type == WalletType.nano || wallet.type == WalletType.banano; Future reconnect() async { final node = appStore.settingsStore.getCurrentNode(wallet.type);