Skip to content

Commit

Permalink
fix: update test range for rewards-v2/slashing for preprod
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcgary committed Jan 14, 2025
1 parent 30a491a commit c1b84f2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -371,9 +371,8 @@ func (c *Config) CanIgnoreIncorrectRewardsRoot(blockNumber uint64) bool {
return true
}

// ignore rewards-v2 deployment/testing range
// 12/13/2024 was first rewards-v2 calculation on preprod (cutoff date of 12/12/2024)
if blockNumber >= 2877938 && blockNumber <= 2909856 {
// ignore rewards-v2 and slashing deployment/testing range
if blockNumber >= 2877938 && blockNumber <= 2965149 {
return true
}
case Chain_Holesky:
Expand Down

0 comments on commit c1b84f2

Please sign in to comment.