-
Notifications
You must be signed in to change notification settings - Fork 20
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
[WIP] Ensuring Compatibility with Ethereum’s Pectra Upgrade #70
base: develop
Are you sure you want to change the base?
Conversation
91c0528
to
38f7b66
Compare
LIPS/lip-27.md
Outdated
```python | ||
def predict_withdrawals_number_in_sweep_cycle(state: BeaconState) -> int: | ||
""" | ||
This method predicts the number of withdrawals that can be performed in a single sweep cycle. |
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.
This method predicts the number of withdrawals that can be performed in a single sweep cycle. | |
This method predicts the number of withdrawals that can be performed in a next sweep cycle. |
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.
fixed
LIPS/lip-27.md
Outdated
For the off-chain components of the Accounting, Validator Exit Bus, and CSM oracles, it is proposed to: | ||
|
||
- Implement the switch to the new report collection algorithm at the time of the hardfork activation; | ||
- Account for Eth1 bridge deposits in the `pending_deposits` queue at the time of the hardfork activation; |
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.
- Account for Eth1 bridge deposits in the `pending_deposits` queue at the time of the hardfork activation; | |
- Account for Eth1 bridge deposits in the `pending_deposits` queue at the transition time after hardfork; |
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.
fixed
LIPS/lip-27.md
Outdated
|
||
#### Overview | ||
|
||
New versions of the off-chain oracles are proposed, featuring updated algorithms for the Accounting, Validator Exit Bus, and CSM oracles to ensure compatibility with changes introduced by the Pectra hardfork. To minimize disruption, the implementation will include both the current and the updated algorithms, with the latter activated after the Pectra hardfork goes live on the network. |
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.
We are no minimizing disruption, but trying to avoid any
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.
fixed
No description provided.