Skip to content

Commit

Permalink
GH-2141 Fix log output
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Mar 7, 2024
1 parent 81388a5 commit 7169abc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/chain/block_header_state_legacy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ namespace eosio::chain {

EOS_ASSERT(relevant_sig_count == keys.size(), wrong_signing_key,
"block signed by unexpected key: ${signing_keys}, expected: ${authority}. ${c} != ${s}",
("signing_keys", keys)("authority", valid_block_signing_authority));
("signing_keys", keys)("authority", valid_block_signing_authority)("c", relevant_sig_count)("s", keys.size()));

EOS_ASSERT(is_satisfied, wrong_signing_key,
"block signatures do not satisfy the block signing authority",
Expand Down
2 changes: 1 addition & 1 deletion libraries/chain/controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1391,7 +1391,7 @@ struct controller_impl {
if (startup != startup_t::existing_state)
open_fork_db();
} catch (const fc::exception& e) {
elog( "Update to open fork database, continueing without reversible blocks: ${e}", ("e", e));
elog( "Unable to open fork database, continuing without reversible blocks: ${e}", ("e", e));
}

if (startup == startup_t::genesis) {
Expand Down

0 comments on commit 7169abc

Please sign in to comment.