-
Notifications
You must be signed in to change notification settings - Fork 1k
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
use headblock for prunePostBlockOperationPools, remove duplicate markInclusionBLStoExecutionChange calls #12085
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
27c8bc7
removing duplicate function
james-prysm 0e04895
Merge branch 'develop' into duplicate-changes-removal
james-prysm 8d08dce
moved markInclusion for bls to use headblock instead of processed block
james-prysm 34b9b61
Merge branch 'develop' into duplicate-changes-removal
james-prysm c20c641
Merge branch 'develop' into duplicate-changes-removal
james-prysm 63f95cc
Merge branch 'develop' into duplicate-changes-removal
james-prysm 90bf88e
updating based on internal feedback
james-prysm 5b5823e
addressing some comments
james-prysm 3235997
addressing feedback from slack
james-prysm ab353ca
Merge branch 'develop' into duplicate-changes-removal
james-prysm 362f353
fixing conflict
james-prysm 10058a3
Merge branch 'develop' into duplicate-changes-removal
james-prysm 2d2545c
Merge branch 'develop' into duplicate-changes-removal
james-prysm f838b31
making changes based on suggestions on slack
james-prysm 30cf37c
reverting a change
james-prysm 904944b
Merge branch 'develop' into duplicate-changes-removal
james-prysm 4cbb316
Merge branch 'develop' into duplicate-changes-removal
james-prysm ad05c42
making chases based on potuz's comments
james-prysm 1ac08f8
Merge branch 'develop' into duplicate-changes-removal
james-prysm ef5da67
removing one additional block copy
james-prysm 7a5818a
Merge branch 'develop' into duplicate-changes-removal
james-prysm 38ecfee
Merge branch 'develop' into duplicate-changes-removal
james-prysm 52cb064
Merge branch 'develop' into duplicate-changes-removal
james-prysm 7c7b7ef
clarifying comments
james-prysm 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
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.
I think there will be a dead lock.
HeadRoot
requires a read lockThere 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.
I thought what potuz mentioned here #12085 (comment) was to use this lock instead.
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.
HeadRoot
does not require a read lock, the function takes one.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.
Ah ok.
HeadRoot
usesheadLock
from Blockchain pkg notForkchoiceLock
. Confusing how there are two different locks