Skip to content
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

Merged
merged 6 commits into from
Mar 11, 2025

Conversation

Kayden-ML
Copy link
Contributor

@Kayden-ML Kayden-ML commented Mar 9, 2025

#132

Implementing tests for epoch_processing

Created issues for the tests that failed for fixing the beacon state functions Issues: #160, #161

@Kayden-ML Kayden-ML self-assigned this Mar 10, 2025
@Kayden-ML Kayden-ML added this to the v0.1.0 milestone Mar 10, 2025
@Kayden-ML Kayden-ML marked this pull request as ready for review March 11, 2025 05:11
Copy link
Member

@KolbyML KolbyML left a 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

Comment on lines 1654 to 1659
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])?;
Copy link
Member

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?

@Kayden-ML Kayden-ML requested a review from KolbyML March 11, 2025 05:28
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// Order by the sequence of activation_eligibility_epoch setting and then in
// Order by the sequence of activation_eligibility_epoch setting and then index

@Kayden-ML Kayden-ML requested a review from KolbyML March 11, 2025 05:31
Copy link
Member

@KolbyML KolbyML left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit: looks good

@Kayden-ML Kayden-ML added this pull request to the merge queue Mar 11, 2025
Merged via the queue into ReamLabs:master with commit 4b447ee Mar 11, 2025
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

2 participants