diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-09-18 17:31:35 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-09-18 17:31:35 +0200 |
commit | b174527f1d7c9f352da3c849d62cc12ec1e0b92d (patch) | |
tree | 289160042cf83563bf572cfbfc3ac55bbf507dbc /src/simplewallet | |
parent | Merge pull request #4299 (diff) | |
parent | api/wallet: properly disable key encryption (diff) | |
download | monero-b174527f1d7c9f352da3c849d62cc12ec1e0b92d.tar.xz |
Merge pull request #4302
ba8dd347 api/wallet: properly disable key encryption (stoffu)
Diffstat (limited to 'src/simplewallet')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index ad67b108e..4046f5fce 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -4089,7 +4089,7 @@ bool simple_wallet::set_daemon(const std::vector<std::string>& args) daemon_url = args[0]; } LOCK_IDLE_SCOPE(); - m_wallet->init(false, daemon_url); + m_wallet->init(daemon_url); if (args.size() == 2) { |