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/simplewallet.cpp | |
| parent | 7cbae6ca988dedbe358ee5edbf9bdd610673a8ee (diff) | |
| download | monzero-core-5ffa31c48ef4c3a181200cd6d43f442e025573b7.tar.gz monzero-core-5ffa31c48ef4c3a181200cd6d43f442e025573b7.tar.xz monzero-core-5ffa31c48ef4c3a181200cd6d43f442e025573b7.zip | |
wallet2: fail to establish daemon cxn == "Disconnected" cxn status
Diffstat (limited to 'src/simplewallet/simplewallet.cpp')
| -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) |
