-
Notifications
You must be signed in to change notification settings - Fork 82
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(hardfork): integration fixes #1205
Closed
mtsitrin
wants to merge
10
commits into
feat/l2-hard-fork-full-node-transition
from
hardfork/integration
Closed
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
d63e828
fix(sync): fixed proposer by height syncing issue on startup and rota…
omritoptix de2414a
fix(validation): set right validation height (#1187)
srene d3390a9
rollapp_revision
mtsitrin 7a44627
fixed proposer at height
mtsitrin 6a27e7e
Merge branch 'feat/l2-hard-fork-full-node-transition' into hardfork/i…
mtsitrin f61f198
Merge branch 'main' into hardfork/integration
mtsitrin 142926d
Merge branch 'feat/l2-hard-fork-full-node-transition' into hardfork/i…
mtsitrin f5af6fe
Merge remote-tracking branch 'origin/feat/l2-hard-fork-full-node-tran…
mtsitrin 669839e
Merge remote-tracking branch 'origin/feat/l2-hard-fork-full-node-tran…
mtsitrin 5180d34
integration_fixes
mtsitrin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
why is this modified? is this runMode not always be the same after start? i mean if the produceblockloop is started it already means is the proposer... and the runmode is not updated after start i think.
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.
so no reason to check against local keys each time again
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.
@mtsitrin this is for when you rotate.
during rotation you start as the proposer, but you shouldn't produce blocks after you produced your last block yet you should still send your last batch.
the code you introduced will make the proposer continue producing blocks while he's submitting his last batch in parallel to the new proposer.
i.e the "propoesr on the rollapp" can change while your in proposer mode.