daemon: fix missing close parenthesis in alt_chain_info output

Reported by assylias_ on IRC
pull/95/head
moneromooo-monero 7 years ago
parent 82411cdf3a
commit d5fbfd677c
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -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;
}

Loading…
Cancel
Save