mirror of
https://github.com/monero-project/monero.git
synced 2024-12-28 10:49:26 -05:00
Lower connection timeout in check_connection()
This commit is contained in:
parent
29735c8f8f
commit
fc40b3e732
@ -2234,7 +2234,7 @@ bool wallet2::check_connection(uint32_t *version)
|
|||||||
u.port = m_testnet ? config::testnet::RPC_DEFAULT_PORT : config::RPC_DEFAULT_PORT;
|
u.port = m_testnet ? config::testnet::RPC_DEFAULT_PORT : config::RPC_DEFAULT_PORT;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!m_http_client.connect(u.host, std::to_string(u.port), WALLET_RCP_CONNECTION_TIMEOUT))
|
if (!m_http_client.connect(u.host, std::to_string(u.port), 10000))
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user