electrum-words: fix seed mistakenly thought to be old style

It'd see "empty" words due to extraneous spaces
This commit is contained in:
moneromooo-monero 2017-06-22 16:47:07 +01:00
parent ae8841f2ab
commit bb708ab8c3
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
2 changed files with 4 additions and 3 deletions

View file

@ -422,10 +422,11 @@ namespace crypto
* \param seed The seed to check (a space delimited concatenated word list)
* \return true if the seed passed is a old style seed false if not.
*/
bool get_is_old_style_seed(const std::string &seed)
bool get_is_old_style_seed(std::string seed)
{
std::vector<std::string> word_list;
boost::split(word_list, seed, boost::is_any_of(" "));
boost::algorithm::trim(seed);
boost::split(word_list, seed, boost::is_any_of(" "), boost::token_compress_on);
return word_list.size() != (seed_length + 1);
}

View file

@ -92,7 +92,7 @@ namespace crypto
* \param seed The seed to check (a space delimited concatenated word list)
* \return true if the seed passed is a old style seed false if not.
*/
bool get_is_old_style_seed(const std::string &seed);
bool get_is_old_style_seed(std::string seed);
}
}