aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet/simplewallet.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-04-12 10:57:50 +0200
committerRiccardo Spagni <ric@spagni.net>2018-04-12 10:57:50 +0200
commit959f6ed9a5fe4dc0039ec48f5651177420b2d9a9 (patch)
tree0fdf6b2c104c4dfcd664e6166a4c444a3aaccdb2 /src/simplewallet/simplewallet.cpp
parentMerge pull request #3434 (diff)
parentwallet: catch exceptions dealing with ringdb and warn (diff)
downloadmonero-959f6ed9a5fe4dc0039ec48f5651177420b2d9a9.tar.xz
Merge pull request #3461
57300491 wallet: catch exceptions dealing with ringdb and warn (moneromooo-monero)
Diffstat (limited to 'src/simplewallet/simplewallet.cpp')
-rw-r--r--src/simplewallet/simplewallet.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index 97dadb126..4e06c4692 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -3101,6 +3101,9 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm)
if (!m_trusted_daemon)
message_writer() << (boost::format(tr("Warning: using an untrusted daemon at %s, privacy will be lessened")) % m_wallet->get_daemon_address()).str();
+ if (m_wallet->get_ring_database().empty())
+ fail_msg_writer() << tr("Failed to initialize ring database: privacy enhancing features will be inactive");
+
m_wallet->callback(this);
return true;