diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-07-24 14:20:12 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-24 14:20:12 -0500 |
| commit | 96cda93a9313821a3e82d593218fcd628ade848b (patch) | |
| tree | 8d8bfad016ca75f1dfa49955748492cdcaeff598 /src/daemon | |
| parent | 9f746b72e289cd0f12c14d9190815fce8e929068 (diff) | |
| parent | cd720c7e0b8ad59bbb06e527b98b74f5168bd7e3 (diff) | |
| download | monzero-core-96cda93a9313821a3e82d593218fcd628ade848b.tar.gz monzero-core-96cda93a9313821a3e82d593218fcd628ade848b.tar.xz monzero-core-96cda93a9313821a3e82d593218fcd628ade848b.zip | |
Merge pull request #5588
cd720c7 add cumulative difficulty to diff command (wowario)
Diffstat (limited to 'src/daemon')
| -rw-r--r-- | src/daemon/rpc_command_executor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp index c521c6292..f3b9ea6ec 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -338,6 +338,7 @@ bool t_rpc_command_executor::show_difficulty() { tools::success_msg_writer() << "BH: " << res.height << ", TH: " << res.top_block_hash << ", DIFF: " << res.difficulty + << ", CUM_DIFF: " << res.cumulative_difficulty << ", HR: " << res.difficulty / res.target << " H/s"; return true; |
