mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-11 05:14:46 +00:00
fix manage pow nodes setting appearing on other wallets
This commit is contained in:
parent
9ab4ece4ee
commit
c5af031354
1 changed files with 1 additions and 1 deletions
|
@ -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<void> reconnect() async {
|
||||
final node = appStore.settingsStore.getCurrentNode(wallet.type);
|
||||
|
|
Loading…
Reference in a new issue