diff options
author | Dion Ahmetaj <Dion Ahmetaj> | 2016-10-10 17:19:36 -0400 |
---|---|---|
committer | Dion Ahmetaj <Dion Ahmetaj> | 2016-10-10 17:19:36 -0400 |
commit | dd6c44327be7d90574466bc37561b9d156466972 (patch) | |
tree | 03e4d18d3ac6b30c442b093155d441d354d96adc /src/daemon/rpc_command_executor.h | |
parent | attempted to remove whitespace spam (diff) | |
download | monero-dd6c44327be7d90574466bc37561b9d156466972.tar.xz |
changed params from start/end index to height/count
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 aa2b89ac2..c097453e7 100644 --- a/src/daemon/rpc_command_executor.h +++ b/src/daemon/rpc_command_executor.h @@ -134,7 +134,7 @@ public: bool output_histogram(uint64_t min_count, uint64_t max_count); - bool print_coinbase_tx_sum(uint64_t start_block_index, uint64_t end_block_index); + bool print_coinbase_tx_sum(uint64_t height, uint64_t count); }; } // namespace daemonize |