validateMnemonic function
Implementation
bool validateMnemonic(var mnemonic) {
List<String> words = formatMnemonic(mnemonic);
try {
mnemonicToEntropy(words);
} catch (e) {
return false;
}
return true;
}
bool validateMnemonic(var mnemonic) {
List<String> words = formatMnemonic(mnemonic);
try {
mnemonicToEntropy(words);
} catch (e) {
return false;
}
return true;
}