-
Notifications
You must be signed in to change notification settings - Fork 1.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
Remove withdrawal Queue #11610
Remove withdrawal Queue #11610
Conversation
// clonedAtts[i] = stateTrie.CopyAttestation(a) | ||
// } | ||
// aggregatedAtts, err := attaggregation.Aggregate(clonedAtts) | ||
// clonedAtts := make([]*ethpb.Attestation, len(atts)) |
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 does your PR always do this?
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.
have no clue, I just run update-go-pbs
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.
That's weird. Our ./hack/update-go-pbs.sh
don't do this. Hopefully we don't mess the next person up
nextWithdrawalIndex uint64 `ssz-gen:"true"` | ||
nextPartialWithdrawalValidatorIndex eth2types.ValidatorIndex `ssz-gen:"true"` | ||
lastWithdrawalValidatorIndex eth2types.ValidatorIndex `ssz-gen:"true"` |
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 we can remove ssz-gen:"true"
, it's probably better to do it in another PR
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.
Very easy to review, thanks @potuz
This PR implements the beacon state for Capella as per ethereum/consensus-specs#3068