Lower connection timeout in check_connection()

This commit is contained in:
Jaquee 2016-12-19 21:19:02 +01:00
parent 29735c8f8f
commit fc40b3e732
No known key found for this signature in database
GPG key ID: 384E52B09F45DC39

View file

@ -2234,7 +2234,7 @@ bool wallet2::check_connection(uint32_t *version)
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;
}