Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/hotstuff_integration' into GH-2125
Browse files Browse the repository at this point in the history
…-consider-vote
  • Loading branch information
heifner committed Mar 8, 2024
2 parents 33fb779 + 3302a6b commit e2b7c3c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 @@ -1400,7 +1400,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
2 changes: 1 addition & 1 deletion tests/nodeos_startup_catchup.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def waitForNodeStarted(node):
logFile = Utils.getNodeDataDir(catchupNodeNum) + "/stderr.txt"
f = open(logFile)
contents = f.read()
if contents.count("3030001 unlinkable_block_exception: Unlinkable block") > 10: # a few are fine
if contents.count("3030001 unlinkable_block_exception: Unlinkable block") > 15: # a few are fine
errorExit(f"Node{catchupNodeNum} has unlinkable blocks: {logFile}.")

testSuccessful=True
Expand Down

0 comments on commit e2b7c3c

Please sign in to comment.