diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-06-23 09:53:09 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-06-23 09:53:50 +0100 |
commit | 9d7f6e60899bf0099b0a468a687420e715518e3f (patch) | |
tree | 9e0e9117b7a5e7f5cf8d893f5536ff0c710c84d6 /src/simplewallet | |
parent | Merge pull request #3939 (diff) | |
download | monero-9d7f6e60899bf0099b0a468a687420e715518e3f.tar.xz |
simplewallet: init trusted daemon flag to false when autodetecting
Diffstat (limited to 'src/simplewallet')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 5576a024f..c42813186 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -3245,6 +3245,7 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm) { try { + m_trusted_daemon = false; if (tools::is_local_address(m_wallet->get_daemon_address())) { MINFO(tr("Daemon is local, assuming trusted")); |