rpccalls::get_mempool refactored

This commit is contained in:
moneroexamples 2017-06-02 11:21:47 +08:00
parent 70442c75e5
commit 5a2489c05e
1 changed files with 13 additions and 11 deletions

View File

@ -76,26 +76,29 @@ rpccalls::get_mempool(vector<tx_info>& mempool_txs)
COMMAND_RPC_GET_TRANSACTION_POOL::request req;
COMMAND_RPC_GET_TRANSACTION_POOL::response res;
std::lock_guard<std::mutex> guard(m_daemon_rpc_mutex);
bool r;
if (!connect_to_monero_deamon())
{
cerr << "get_mempool: not connected to deamon" << endl;
return false;
std::lock_guard<std::mutex> guard(m_daemon_rpc_mutex);
if (!connect_to_monero_deamon())
{
cerr << "get_mempool: not connected to deamon" << endl;
return false;
}
r = epee::net_utils::invoke_http_json(
"/get_transaction_pool",
req, res, m_http_client, timeout_time_ms);
}
bool r = epee::net_utils::invoke_http_json(
"/get_transaction_pool",
req, res, m_http_client, timeout_time_ms);
if (!r)
if (!r || res.status != CORE_RPC_STATUS_OK)
{
cerr << "Error connecting to Monero deamon at "
<< deamon_url << endl;
return false;
}
mempool_txs = res.transactions;
// mempool txs are not sorted base on their arival time,
@ -107,7 +110,6 @@ rpccalls::get_mempool(vector<tx_info>& mempool_txs)
return t1.receive_time > t2.receive_time;
});
return true;
}