-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(code/core-consensus): Reproduce and fix consensus being stuck with byzantine proposer #853
base: main
Are you sure you want to change the base?
Conversation
❌ 9 Tests Failed:
View the top 3 failed test(s) by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
code/crates/test/app/src/state.rs
Outdated
@@ -50,12 +50,17 @@ pub struct State { | |||
// order for each node to likely propose different values at | |||
// each round. | |||
fn seed_from_address(address: &Address) -> u64 { | |||
address.into_inner().chunks(8).fold(0u64, |acc, chunk| { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea! Maybe we should allow the test framework to trigger such behavior, what do you think? Will think about how to implement that properly
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, let's discuss. Also to figure out how to enable byzantine proposer.
Closes: #850
Closes: #857
PR author checklist
For all contributors
For external contributors