Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Correct a bad tag in wrong first block log message. #6132

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libraries/chain/controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ struct controller_impl {
bool append_to_blog = false;
if (!log_head) {
if (s->block) {
EOS_ASSERT(s->block_num == blog.first_block_num(), block_log_exception, "block log has no blocks and is appending the wrong first block. Expected ${expecgted}, but received: ${actual}",
EOS_ASSERT(s->block_num == blog.first_block_num(), block_log_exception, "block log has no blocks and is appending the wrong first block. Expected ${expected}, but received: ${actual}",
("expected", blog.first_block_num())("actual", s->block_num));
append_to_blog = true;
} else {
Expand Down