Merge pull request #2424
28b72b6etx_pool: pre-init tvc.m_verifivation_failed before processing (moneromooo-monero)50a629b2core_tests: catch (impossible in practice) tx extra api failure (moneromooo-monero)fee15ef1wallet2: catch failure to parse address (moneromooo-monero)1399e26dnet_peerlist: remove dead code (moneromooo-monero)50e09698tx_pool: guard against failure getting tx hash (moneromooo-monero)54cc209awallet_rpc_server: catch failure to create directory (moneromooo-monero)3e55099cwallet_rpc_server: init m_vm to NULL in ctor (moneromooo-monero)7d0dde5ewallet_args: remove redundant default value for --log-file (moneromooo-monero)ed4a3350wallet2: catch failure to save keys file (moneromooo-monero)44434c8awallet2_api: check whether dynamic_cast returns NULL (moneromooo-monero)92f2f687core: check return value from parse_hexstr_to_binbuff (moneromooo-monero)5475692ewallet2_api: remove an unused, uninitialized, field (moneromooo-monero)a7ba3de1libwallet_api_tests: initialize newblock_triggered on reset (moneromooo-monero)b2763acewallet2_api: init error code to "no error" in the ctor (moneromooo-monero)b5faac53get_blockchain_top now returns void (moneromooo-monero)2e44d8f2wallet_rpc_server: guard against exceptions (moneromooo-monero)4230876bsimplewallet: guard against I/O exceptions (moneromooo-monero)06c1e057daemon: initialize decode_as_json in RPC request (moneromooo-monero)11f71af5http_base: init size_t in http_request_info ctor (moneromooo-monero)
This commit is contained in:
@@ -128,11 +128,7 @@ namespace cryptonote
|
||||
{
|
||||
CHECK_CORE_BUSY();
|
||||
crypto::hash top_hash;
|
||||
if (!m_core.get_blockchain_top(res.height, top_hash))
|
||||
{
|
||||
res.status = "Failed";
|
||||
return false;
|
||||
}
|
||||
m_core.get_blockchain_top(res.height, top_hash);
|
||||
++res.height; // turn top block height into blockchain height
|
||||
res.top_block_hash = string_tools::pod_to_hex(top_hash);
|
||||
res.target_height = m_core.get_target_blockchain_height();
|
||||
@@ -1061,13 +1057,7 @@ namespace cryptonote
|
||||
}
|
||||
uint64_t last_block_height;
|
||||
crypto::hash last_block_hash;
|
||||
bool have_last_block_hash = m_core.get_blockchain_top(last_block_height, last_block_hash);
|
||||
if (!have_last_block_hash)
|
||||
{
|
||||
error_resp.code = CORE_RPC_ERROR_CODE_INTERNAL_ERROR;
|
||||
error_resp.message = "Internal error: can't get last block hash.";
|
||||
return false;
|
||||
}
|
||||
m_core.get_blockchain_top(last_block_height, last_block_hash);
|
||||
block last_block;
|
||||
bool have_last_block = m_core.get_block_by_hash(last_block_hash, last_block);
|
||||
if (!have_last_block)
|
||||
@@ -1300,11 +1290,7 @@ namespace cryptonote
|
||||
}
|
||||
|
||||
crypto::hash top_hash;
|
||||
if (!m_core.get_blockchain_top(res.height, top_hash))
|
||||
{
|
||||
res.status = "Failed";
|
||||
return false;
|
||||
}
|
||||
m_core.get_blockchain_top(res.height, top_hash);
|
||||
++res.height; // turn top block height into blockchain height
|
||||
res.top_block_hash = string_tools::pod_to_hex(top_hash);
|
||||
res.target_height = m_core.get_target_blockchain_height();
|
||||
@@ -1716,11 +1702,7 @@ namespace cryptonote
|
||||
}
|
||||
|
||||
crypto::hash top_hash;
|
||||
if (!m_core.get_blockchain_top(res.height, top_hash))
|
||||
{
|
||||
res.status = "Failed";
|
||||
return false;
|
||||
}
|
||||
m_core.get_blockchain_top(res.height, top_hash);
|
||||
++res.height; // turn top block height into blockchain height
|
||||
res.target_height = m_core.get_target_blockchain_height();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user