aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-01-25 08:29:49 +0000
committerHoward Chu <hyc@symas.com>2016-01-27 14:13:22 +0000
commit423c7fec9e0fae5ad006bdf38bfe3911c8e7f5f3 (patch)
treeeedb1e0b2e48e27bfafbf4179ec1bb1070ab2379
parentMerge pull request #620 (diff)
downloadmonero-423c7fec9e0fae5ad006bdf38bfe3911c8e7f5f3.tar.xz
simplewallet: remove leftover command line refresh-type handling
-rw-r--r--src/simplewallet/simplewallet.cpp3
-rw-r--r--src/simplewallet/simplewallet.h2
2 files changed, 0 insertions, 5 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
{
diff --git a/src/simplewallet/simplewallet.h b/src/simplewallet/simplewallet.h
index ec48680b9..c2a8d2296 100644
--- a/src/simplewallet/simplewallet.h
+++ b/src/simplewallet/simplewallet.h
@@ -230,8 +230,6 @@ namespace cryptonote
std::string m_daemon_host;
int m_daemon_port;
- tools::wallet2::RefreshType m_refresh_type;
-
epee::console_handlers_binder m_cmd_binder;
std::unique_ptr<tools::wallet2> m_wallet;