aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Clagett <code@leeclagett.com>2016-11-12 21:55:08 -0500
committerLee Clagett <code@leeclagett.com>2016-11-12 21:55:08 -0500
commit265e4605ecb181ed968a20c9b207ade8ea0fbd32 (patch)
tree9a854c8846932013b8783252838f14486d425079
parentMerge pull request #1330 (diff)
downloadmonero-265e4605ecb181ed968a20c9b207ade8ea0fbd32.tar.xz
Fixed generate-from-json bug introduced in 358e068
-rw-r--r--src/simplewallet/simplewallet.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index a2b9405c8..3190c0496 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -1134,7 +1134,8 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm)
else if (!m_generate_from_json.empty())
{
m_wallet_file = m_generate_from_json;
- if (!tools::wallet2::make_from_json(vm, m_wallet_file))
+ m_wallet = tools::wallet2::make_from_json(vm, m_wallet_file);
+ if (!m_wallet)
return false;
}
else