You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/pages/add_wallet_views/new_wallet_recovery_phrase_warning_view/new_wallet_recovery_phrase_warning_view.dart
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -165,10 +165,10 @@ class _NewWalletRecoveryPhraseWarningViewState
165
165
.getPrimaryNodeFor(currency: coin);
166
166
167
167
if (node ==null) {
168
-
node = coin.defaultNode;
168
+
node = coin.defaultNode(isPrimary:true);
169
169
await ref
170
170
.read(nodeServiceChangeNotifierProvider)
171
-
.setPrimaryNodeFor(coin: coin, node: node);
171
+
.save(node, null, false);
172
172
}
173
173
174
174
final txTracker =TransactionNotificationTracker(walletId: info.walletId);
0 commit comments