aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet/simplewallet.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-01-25 19:38:35 +0200
committerRiccardo Spagni <ric@spagni.net>2016-01-25 19:38:35 +0200
commit56570ee2b5eac12f145201245ec1ca63980911ba (patch)
treeeedb1e0b2e48e27bfafbf4179ec1bb1070ab2379 /src/simplewallet/simplewallet.cpp
parentMerge pull request #620 (diff)
parentsimplewallet: remove leftover command line refresh-type handling (diff)
downloadmonero-56570ee2b5eac12f145201245ec1ca63980911ba.tar.xz
Merge pull request #621
f76f656 simplewallet: remove leftover command line refresh-type handling (moneromooo-monero)
Diffstat (limited to 'src/simplewallet/simplewallet.cpp')
-rw-r--r--src/simplewallet/simplewallet.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index 2484cd3a5..053f14349 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -1020,7 +1020,6 @@ bool simple_wallet::new_wallet(const std::string &wallet_file, const std::string
m_wallet.reset(new tools::wallet2(testnet));
m_wallet->callback(this);
m_wallet->set_seed_language(mnemonic_language);
- m_wallet->set_refresh_type(m_refresh_type);
crypto::secret_key recovery_val;
try
@@ -1069,7 +1068,6 @@ bool simple_wallet::new_wallet(const std::string &wallet_file, const std::string
m_wallet.reset(new tools::wallet2(testnet));
m_wallet->callback(this);
- m_wallet->set_refresh_type(m_refresh_type);
try
{
@@ -1100,7 +1098,6 @@ bool simple_wallet::open_wallet(const string &wallet_file, const std::string& pa
m_wallet_file = wallet_file;
m_wallet.reset(new tools::wallet2(testnet));
m_wallet->callback(this);
- m_wallet->set_refresh_type(m_refresh_type);
try
{