Merge pull request #2106

bb708ab8 electrum-words: fix seed mistakenly thought to be old style (moneromooo-monero)
This commit is contained in:
Riccardo Spagni
2017-07-03 12:23:39 +02:00
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);
}
}