-
Notifications
You must be signed in to change notification settings - Fork 21
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
feat: Integrate epoch_processing EF test with our implementation #157
Conversation
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.
Just a small fix, then it looks good
for (index, reward) in rewards.iter().enumerate() { | ||
// Increase balance for the validator based on rewards | ||
self.increase_balance(index as u64, *reward)?; | ||
|
||
// Decrease balance for the validator based on penalties | ||
self.decrease_balance(index as u64, penalties[index])?; |
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.
can we revert this to what it was before?
for index in initiate_validator { | ||
self.initiate_validator_exit(index); | ||
} | ||
|
||
// Queue validators eligible for activation and not yet dequeued for activation | ||
let mut activation_queue: Vec<usize> = (0..self.validators.len()) | ||
// Order by the sequence of activation_eligibility_epoch setting and then index | ||
// Order by the sequence of activation_eligibility_epoch setting and then in |
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.
// Order by the sequence of activation_eligibility_epoch setting and then in | |
// Order by the sequence of activation_eligibility_epoch setting and then index |
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.
looks good
#132
Implementing tests for epoch_processing
Created issues for the tests that failed for fixing the beacon state functions Issues: #160, #161