aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-05-06 00:28:18 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-05-06 00:28:18 -0500
commit9e3f72c375b74c8e61df237033292a58dbdb7aae (patch)
treeb9aa3b77f8c1469b77c34c183f3f680156c31765 /src/wallet
parentMerge pull request #6478 (diff)
parentwallet2: check_connection return false on get_version status != OK (diff)
downloadmonero-9e3f72c375b74c8e61df237033292a58dbdb7aae.tar.xz
Merge pull request #6480
4f489fa wallet2: check_connection return false on get_version status != OK (xiphon)
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/wallet2.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index a9f454209..d56c80105 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -5494,13 +5494,12 @@ bool wallet2::check_connection(uint32_t *version, bool *ssl, uint32_t timeout)
cryptonote::COMMAND_RPC_GET_VERSION::request req_t = AUTO_VAL_INIT(req_t);
cryptonote::COMMAND_RPC_GET_VERSION::response resp_t = AUTO_VAL_INIT(resp_t);
bool r = invoke_http_json_rpc("/json_rpc", "get_version", req_t, resp_t);
- if(!r) {
+ if(!r || resp_t.status != CORE_RPC_STATUS_OK) {
if(version)
*version = 0;
return false;
}
- if (resp_t.status == CORE_RPC_STATUS_OK)
- m_rpc_version = resp_t.version;
+ m_rpc_version = resp_t.version;
}
if (version)
*version = m_rpc_version;