mirror of
https://github.com/monero-project/monero.git
synced 2025-07-25 10:15:21 -04:00
rpc: fix internal daemon calls in restricted rpc getting partial data
This commit is contained in:
parent
b7719022fd
commit
acfff8d0ce
6 changed files with 342 additions and 321 deletions
|
@ -878,7 +878,7 @@ bool t_rpc_command_executor::print_transaction_pool_long() {
|
|||
}
|
||||
else
|
||||
{
|
||||
if (!m_rpc_server->on_get_transaction_pool(req, res, false) || res.status != CORE_RPC_STATUS_OK)
|
||||
if (!m_rpc_server->on_get_transaction_pool(req, res) || res.status != CORE_RPC_STATUS_OK)
|
||||
{
|
||||
tools::fail_msg_writer() << make_error(fail_message, res.status);
|
||||
return true;
|
||||
|
@ -964,7 +964,7 @@ bool t_rpc_command_executor::print_transaction_pool_short() {
|
|||
}
|
||||
else
|
||||
{
|
||||
if (!m_rpc_server->on_get_transaction_pool(req, res, false) || res.status != CORE_RPC_STATUS_OK)
|
||||
if (!m_rpc_server->on_get_transaction_pool(req, res) || res.status != CORE_RPC_STATUS_OK)
|
||||
{
|
||||
tools::fail_msg_writer() << make_error(fail_message, res.status);
|
||||
return true;
|
||||
|
@ -1022,7 +1022,7 @@ bool t_rpc_command_executor::print_transaction_pool_stats() {
|
|||
else
|
||||
{
|
||||
res.pool_stats = {};
|
||||
if (!m_rpc_server->on_get_transaction_pool_stats(req, res, false) || res.status != CORE_RPC_STATUS_OK)
|
||||
if (!m_rpc_server->on_get_transaction_pool_stats(req, res) || res.status != CORE_RPC_STATUS_OK)
|
||||
{
|
||||
tools::fail_msg_writer() << make_error(fail_message, res.status);
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue