Skip to content

Commit

Permalink
Update block number for ignoring roots on testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcgary committed Nov 15, 2024
1 parent 496ccc9 commit b553402
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,11 +240,13 @@ func (c *Config) GetOperatorRestakedStrategiesStartBlock() uint64 {
func (c *Config) CanIgnoreIncorrectRewardsRoot(blockNumber uint64) bool {
switch c.Chain {
case Chain_Preprod:
if blockNumber < 2125282 {
// roughly 2024-08-01
if blockNumber < 2046020 {
return true
}
case Chain_Holesky:
if blockNumber < 2125282 {
// roughly 2024-08-01
if blockNumber < 2046020 {
return true
}
case Chain_Mainnet:
Expand Down

0 comments on commit b553402

Please sign in to comment.