diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-01-08 11:14:11 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-01-13 23:21:38 +0000 |
commit | 5b5017e26708c48cc1ba7bd3f1e0f0f70d6c6316 (patch) | |
tree | 6560c7f8c0177766d1ae0d276bd7de0742972211 /src/daemon/rpc_command_executor.h | |
parent | Merge pull request #1562 (diff) | |
download | monero-5b5017e26708c48cc1ba7bd3f1e0f0f70d6c6316.tar.xz |
rpc: add a command to get info about the current blockchain
About the tip of the main chain, and the last N blocks
Diffstat (limited to 'src/daemon/rpc_command_executor.h')
-rw-r--r-- | src/daemon/rpc_command_executor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/daemon/rpc_command_executor.h b/src/daemon/rpc_command_executor.h index a6c712c04..af283c1f1 100644 --- a/src/daemon/rpc_command_executor.h +++ b/src/daemon/rpc_command_executor.h @@ -139,6 +139,8 @@ public: bool print_coinbase_tx_sum(uint64_t height, uint64_t count); bool alt_chain_info(); + + bool print_blockchain_dynamic_stats(uint64_t nblocks); }; } // namespace daemonize |