diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-03-15 23:50:13 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-03-15 23:50:13 +0200 |
commit | 5fd90c71b6d347f23fb48a4a4c8dd4fd8985502b (patch) | |
tree | 3823ce633539e96735970300e8bf80506adb5447 /src/daemon/rpc_command_executor.cpp | |
parent | Merge pull request #723 (diff) | |
parent | fix formatting error on bitmonero print_block return (diff) | |
download | monero-5fd90c71b6d347f23fb48a4a4c8dd4fd8985502b.tar.xz |
Merge pull request #726
5dd91f6 fix formatting error on bitmonero print_block return (Mike C)
ee71946 Fix typo on bitmonerod rpc method error. (Mike C)
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 361808cf7..ffda7cde3 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -66,7 +66,7 @@ namespace { << "is orphan: " << header.orphan_status << std::endl << "height: " << boost::lexical_cast<std::string>(header.height) << std::endl << "depth: " << boost::lexical_cast<std::string>(header.depth) << std::endl - << "hash: " << header.hash + << "hash: " << header.hash << std::endl << "difficulty: " << boost::lexical_cast<std::string>(header.difficulty) << std::endl << "reward: " << boost::lexical_cast<std::string>(header.reward); } |