mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
mnemonics: ignore multiple whitespace between words
This commit is contained in:
parent
9ed496bbc5
commit
5fce581ce3
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ namespace crypto
|
||||||
std::vector<std::string> seed;
|
std::vector<std::string> seed;
|
||||||
|
|
||||||
boost::algorithm::trim(words);
|
boost::algorithm::trim(words);
|
||||||
boost::split(seed, words, boost::is_any_of(" "));
|
boost::split(seed, words, boost::is_any_of(" "), boost::token_compress_on);
|
||||||
|
|
||||||
// error on non-compliant word list
|
// error on non-compliant word list
|
||||||
if (seed.size() != seed_length/2 && seed.size() != seed_length &&
|
if (seed.size() != seed_length/2 && seed.size() != seed_length &&
|
||||||
|
|
Loading…
Reference in a new issue