diff options
author | j-berman <justinberman@protonmail.com> | 2022-09-21 20:12:16 -0600 |
---|---|---|
committer | j-berman <justinberman@protonmail.com> | 2022-09-21 20:12:16 -0600 |
commit | 5ffa31c48ef4c3a181200cd6d43f442e025573b7 (patch) | |
tree | 057b947eeec03068c5fc842c98d45782fe4ee9d9 /src/simplewallet | |
parent | Merge pull request #8545 (diff) | |
download | monero-5ffa31c48ef4c3a181200cd6d43f442e025573b7.tar.xz |
wallet2: fail to establish daemon cxn == "Disconnected" cxn status
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 860c3f0b0..224eeec03 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -4787,7 +4787,7 @@ bool simple_wallet::try_connect_to_daemon(bool silent, uint32_t* version) uint32_t version_ = 0; if (!version) version = &version_; - bool wallet_is_outdated, daemon_is_outdated = false; + bool wallet_is_outdated = false, daemon_is_outdated = false; if (!m_wallet->check_connection(version, NULL, 200000, &wallet_is_outdated, &daemon_is_outdated)) { if (!silent) |