Skip to content

Commit 9850049

Browse files
Merge pull request #1162 from cypherstack/solfix
new wallet solana null error fix
2 parents 6bdf43b + f0e4bac commit 9850049

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/pages/add_wallet_views/new_wallet_recovery_phrase_warning_view/new_wallet_recovery_phrase_warning_view.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ class _NewWalletRecoveryPhraseWarningViewState
198198
mnemonicPassphrase =
199199
ref.read(pNewWalletOptions.state).state!.mnemonicPassphrase;
200200
} else {
201-
// this may not be epiccash specific?
202-
if (coin is Epiccash) {
201+
// this may not be epiccash and sol specific?
202+
if (coin is Epiccash || coin is Solana) {
203203
mnemonicPassphrase = "";
204204
}
205205
}

0 commit comments

Comments
 (0)