aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/rpc_command_executor.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-03-15 23:50:13 +0200
committerRiccardo Spagni <ric@spagni.net>2016-03-15 23:50:13 +0200
commit5fd90c71b6d347f23fb48a4a4c8dd4fd8985502b (patch)
tree3823ce633539e96735970300e8bf80506adb5447 /src/daemon/rpc_command_executor.cpp
parent240a50f3fb1e1c3526896b112c15cf4fc3d030ae (diff)
parent5dd91f6332ccb9c7ddb954e740fea9e6946626a9 (diff)
downloadmonzero-core-5fd90c71b6d347f23fb48a4a4c8dd4fd8985502b.tar.gz
monzero-core-5fd90c71b6d347f23fb48a4a4c8dd4fd8985502b.tar.xz
monzero-core-5fd90c71b6d347f23fb48a4a4c8dd4fd8985502b.zip
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.cpp2
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);
}