-
Notifications
You must be signed in to change notification settings - Fork 298
Envelope processing #7748
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
base: unstable
Are you sure you want to change the base?
Envelope processing #7748
Conversation
beacon_chain/spec/helpers_el.nim
Outdated
| const consensusFork = typeof(blck).kind | ||
| static: doAssert consensusFork >= ConsensusFork.Deneb | ||
|
|
||
| template forkyTransactions: untyped = |
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.
Typically when Nimbus uses forkyFoo, it means the actual Foo (Transaction, say) are different. It seems like in this case the transactions themselves are the same, just housed differently?
| else: | ||
| blck.body.execution_payload.transactions | ||
| template forkyCommitments: untyped = | ||
| when consensusFork >= ConsensusFork.Gloas: |
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.
Similar point here -- are the commitments any different, or just in a different part of the block/envelope?
No description provided.