Commit 114ff2a8 authored by fro's avatar fro
Browse files

small fix in message

parent b3b1bd00
......@@ -48,7 +48,7 @@ export function validateSeed(seed) {
if (set.has(word)) {
return {
valid: false,
reason: `Duplicated word "${word}" found. Words in seed phrase must be unique.`
reason: `A duplicated word "${word}" found. Words in seed phrase must be unique.`
};
}
if (word === '') {
......@@ -59,7 +59,7 @@ export function validateSeed(seed) {
}
return {
valid: false,
reason: `Word ${word} is not from the word list`
reason: `The word "${word}" is not from the word list`
}
}
set.add(word);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment