From d5fbfd677c4fc81b1e5edbd1617a395d30fd97a8 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sat, 18 Mar 2017 19:16:08 +0000 Subject: [PATCH] daemon: fix missing close parenthesis in alt_chain_info output Reported by assylias_ on IRC --- src/daemon/rpc_command_executor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp index 037d10b7..b145310d 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; }