aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-03-18 19:16:08 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-03-18 19:19:32 +0000
commitd5fbfd677c4fc81b1e5edbd1617a395d30fd97a8 (patch)
tree1c7259af3b2aa63c02e4cdf124cbcd164a61de14 /src
parentMerge pull request #1886 (diff)
downloadmonero-d5fbfd677c4fc81b1e5edbd1617a395d30fd97a8.tar.xz
daemon: fix missing close parenthesis in alt_chain_info output
Reported by assylias_ on IRC
Diffstat (limited to 'src')
-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 037d10b7d..b145310de 100644
--- a/src/daemon/rpc_command_executor.cpp
+++ b/src/daemon/rpc_command_executor.cpp
@@ -1482,7 +1482,7 @@ bool t_rpc_command_executor::alt_chain_info()
{
uint64_t start_height = (chain.height - chain.length + 1);
tools::msg_writer() << chain.length << " blocks long, from height " << start_height << " (" << (ires.height - start_height - 1)
- << " deep, diff " << chain.difficulty << ": " << chain.block_hash;
+ << " deep), diff " << chain.difficulty << ": " << chain.block_hash;
}
return true;
}