diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-08-15 17:39:35 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-08-15 17:39:35 -0500 |
commit | b531858c02669a257a0e65627b193bd747e33067 (patch) | |
tree | 42b9ee063ca9d66e29f2e2c3c98db901d5b0d40d /src | |
parent | Merge pull request #4172 (diff) | |
parent | daemon.print_bc: don't print difficulty twice (diff) | |
download | monero-b531858c02669a257a0e65627b193bd747e33067.tar.xz |
Merge pull request #4173
3940e12 daemon.print_bc: don't print difficulty twice (stoffu)
Diffstat (limited to 'src')
-rw-r--r-- | src/daemon/rpc_command_executor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp index e2b42c806..45ba81e16 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -557,7 +557,7 @@ bool t_rpc_command_executor::print_blockchain_info(uint64_t start_block_index, u if (!first) std::cout << std::endl; std::cout - << "height: " << header.height << ", timestamp: " << header.timestamp << ", difficulty: " << header.difficulty + << "height: " << header.height << ", timestamp: " << header.timestamp << ", size: " << header.block_size << ", transactions: " << header.num_txes << std::endl << "major version: " << (unsigned)header.major_version << ", minor version: " << (unsigned)header.minor_version << std::endl << "block id: " << header.hash << ", previous block id: " << header.prev_hash << std::endl |