diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-07 16:35:49 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-07 16:45:54 +0100 |
commit | b776c7256852c85d5d518a663e6ff8acbab17024 (patch) | |
tree | c4b65d9a1f52c3e12caf0994ca286e10b95878c0 /src/daemon/rpc_command_executor.h | |
parent | Merge pull request #2548 (diff) | |
download | monero-b776c7256852c85d5d518a663e6ff8acbab17024.tar.xz |
daemon: use @N syntax to output_histogram for specific amounts
Makes debugging tx verification easier
Diffstat (limited to '')
-rw-r--r-- | src/daemon/rpc_command_executor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/rpc_command_executor.h b/src/daemon/rpc_command_executor.h index d79707a6f..c9d0ac671 100644 --- a/src/daemon/rpc_command_executor.h +++ b/src/daemon/rpc_command_executor.h @@ -137,7 +137,7 @@ public: bool flush_txpool(const std::string &txid); - bool output_histogram(uint64_t min_count, uint64_t max_count); + bool output_histogram(const std::vector<uint64_t> &amounts, uint64_t min_count, uint64_t max_count); bool print_coinbase_tx_sum(uint64_t height, uint64_t count); |