Skip to content

Commit

Permalink
Add missing ${}
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Feb 20, 2025
1 parent 539182a commit a079d4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/chain/controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4398,7 +4398,7 @@ struct controller_impl {
if( switch_fork ) {
auto head_fork_comp_str =
block_handle_accessor::apply<std::string>(chain_head, [](auto& head) -> std::string { return log_fork_comparison(*head); });
ilog("switching forks from ${chid} (block number ${chn} ${cp}) ${c} to ${nhid} (block number ${nhn} np) ${n}",
ilog("switching forks from ${chid} (block number ${chn} ${cp}) ${c} to ${nhid} (block number ${nhn} ${np}) ${n}",
("chid", chain_head.id())("chn", chain_head.block_num())("cp", chain_head.producer())
("nhid", new_head->id())("nhn", new_head->block_num())("np", new_head->producer())
("c", head_fork_comp_str)("n", log_fork_comparison(*new_head)));
Expand Down

0 comments on commit a079d4f

Please sign in to comment.