daemon: use @N syntax to output_histogram for specific amounts

Makes debugging tx verification easier
This commit is contained in:
moneromooo-monero 2017-10-07 16:35:49 +01:00
parent 86e9de588c
commit b776c72568
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
3 changed files with 26 additions and 11 deletions

View file

@ -1490,13 +1490,14 @@ bool t_rpc_command_executor::flush_txpool(const std::string &txid)
return true;
}
bool t_rpc_command_executor::output_histogram(uint64_t min_count, uint64_t max_count)
bool t_rpc_command_executor::output_histogram(const std::vector<uint64_t> &amounts, uint64_t min_count, uint64_t max_count)
{
cryptonote::COMMAND_RPC_GET_OUTPUT_HISTOGRAM::request req;
cryptonote::COMMAND_RPC_GET_OUTPUT_HISTOGRAM::response res;
std::string fail_message = "Unsuccessful";
epee::json_rpc::error error_resp;
req.amounts = amounts;
req.min_count = min_count;
req.max_count = max_count;
req.unlocked = false;