-
Notifications
You must be signed in to change notification settings - Fork 260
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
Clean up Partitioned Epoch Rewards feature logic #4186
base: master
Are you sure you want to change the base?
Conversation
The Firedancer team maintains a line-for-line reimplementation of the |
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.
Nice cleanup. One of my favorite type of PRs - deleting code!
I have just one question to consider, probably to address in a follow up 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.
Approving from SVM
Co-authored-by: Brooks <[email protected]>
46edc90
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.
@topointon-jump , I see that you consulted on a similar feature-gate cleanup in November. Any FD concerns with this one? Presumably you're already supporting the syscall; the only change here is to remove the feature-gating of the fn registration. |
Problem
The feature gate
partitioned_epoch_rewards_superfeature
has been activated on all public clusters, but the gating logic remains.Summary of Changes
bank.rs
, but also the superfeature fix inbank::partitioned_epoch_rewards::sysvar::create_epoch_rewards_sysvar()
Fixes #426