checking for conection does not work yet as intended. remming it out.

This commit is contained in:
moneroexamples 2016-04-15 16:55:59 +08:00
parent c388078432
commit c5c3fed647
2 changed files with 9 additions and 9 deletions

View File

@ -62,14 +62,14 @@ namespace xmreg {
index(uint64_t page_no = 0, bool refresh_page = false)
{
bool is_connected = rpc.check_connection();
cout << "check connection: " << is_connected << endl;
if (!is_connected)
{
return "Connection to the Monero demon does not exist or was lost!";
}
// bool is_connected = rpc.check_connection();
//
// cout << "check connection: " << is_connected << endl;
//
// if (!is_connected)
// {
// return "Connection to the Monero demon does not exist or was lost!";
// }
//get current server timestamp
server_timestamp = std::time(nullptr);

View File

@ -23,7 +23,7 @@ namespace xmreg
class rpccalls
{
string deamon_url {"http:://127.0.0.1:18081"};
uint64_t timeout_time {20000};
uint64_t timeout_time {200000};
epee::net_utils::http::url_content url;