Minor comment changes and code clean-up

This commit is contained in:
Oran Juice 2014-09-28 14:10:23 +05:30
parent 473c9644a9
commit 2b60646c9b
No known key found for this signature in database
GPG key ID: 71C5AF46CCB28124
3 changed files with 5 additions and 5 deletions

View file

@ -299,7 +299,7 @@ namespace crypto
/*! /*!
* \brief Gets a list of seed languages that are supported. * \brief Gets a list of seed languages that are supported.
* \param languages The list of languages gets added to this vector. * \param languages The vector is set to the list of languages.
*/ */
void get_language_list(std::vector<std::string> &languages) void get_language_list(std::vector<std::string> &languages)
{ {

View file

@ -80,7 +80,7 @@ namespace crypto
/*! /*!
* \brief Gets a list of seed languages that are supported. * \brief Gets a list of seed languages that are supported.
* \param languages The list of languages gets added to this vector. * \param languages The vector is set to the list of languages.
*/ */
void get_language_list(std::vector<std::string> &languages); void get_language_list(std::vector<std::string> &languages);

View file

@ -511,15 +511,15 @@ bool simple_wallet::new_wallet(const string &wallet_file, const std::string& pas
// convert rng value to electrum-style word list // convert rng value to electrum-style word list
std::string electrum_words; std::string electrum_words;
bool is_deprecated_wallet = m_restore_deterministic_wallet && bool was_deprecated_wallet = m_restore_deterministic_wallet &&
(crypto::ElectrumWords::get_is_old_style_word_list() || (crypto::ElectrumWords::get_is_old_style_word_list() ||
crypto::ElectrumWords::get_is_old_style_seed(m_electrum_seed)); crypto::ElectrumWords::get_is_old_style_seed(m_electrum_seed));
// Ask for seed language if it is not a wallet restore or if it was a deprecated wallet // Ask for seed language if it is not a wallet restore or if it was a deprecated wallet
// that was earlier used before this restore. // that was earlier used before this restore.
if (!m_restore_deterministic_wallet || is_deprecated_wallet) if (!m_restore_deterministic_wallet || was_deprecated_wallet)
{ {
if (is_deprecated_wallet) if (was_deprecated_wallet)
{ {
// The user had used an older version of the wallet with old style mnemonics. // The user had used an older version of the wallet with old style mnemonics.
message_writer(epee::log_space::console_color_green, false) << "\nYou had been using " << message_writer(epee::log_space::console_color_green, false) << "\nYou had been using " <<