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/daemon/rpc_command_executor.cpp | |
| parent | 2102e6c738b7bbe56b74cbf49cb47eda26bb58be (diff) | |
| parent | 3940e12933c4ca223dace66a17ffda84a68a9475 (diff) | |
| download | monzero-core-b531858c02669a257a0e65627b193bd747e33067.tar.gz monzero-core-b531858c02669a257a0e65627b193bd747e33067.tar.xz monzero-core-b531858c02669a257a0e65627b193bd747e33067.zip | |
Merge pull request #4173
3940e12 daemon.print_bc: don't print difficulty twice (stoffu)
Diffstat (limited to 'src/daemon/rpc_command_executor.cpp')
| -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 |
