From 2b60646c9bcf8519bbe4bbc5bb433d2a0d1141a7 Mon Sep 17 00:00:00 2001 From: Oran Juice Date: Sun, 28 Sep 2014 14:10:23 +0530 Subject: Minor comment changes and code clean-up --- src/simplewallet/simplewallet.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/simplewallet/simplewallet.cpp') diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index ee2b1346f..7a47dead0 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -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 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_seed(m_electrum_seed)); // 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. - 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. message_writer(epee::log_space::console_color_green, false) << "\nYou had been using " << -- cgit v1.2.3