aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet
diff options
context:
space:
mode:
authorOran Juice <oranjuices@hotmail.com>2014-09-28 14:10:23 +0530
committerOran Juice <oranjuices@hotmail.com>2014-09-28 14:10:23 +0530
commit2b60646c9bcf8519bbe4bbc5bb433d2a0d1141a7 (patch)
tree1a67a8ecb90612555395f30c2138e49ff23e5106 /src/simplewallet
parentDefault to new style English seed (diff)
downloadmonero-2b60646c9bcf8519bbe4bbc5bb433d2a0d1141a7.tar.xz
Minor comment changes and code clean-up
Diffstat (limited to 'src/simplewallet')
-rw-r--r--src/simplewallet/simplewallet.cpp6
1 files changed, 3 insertions, 3 deletions
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 " <<