Skip to content

Commit 714b211

Browse files
committed
minor change
1 parent b10c98a commit 714b211

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/rpc/rpc.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,8 @@ func (rpc *Client) needsChain296SpecialHandling(blockNumbers []*big.Int) bool {
337337
return false
338338
}
339339

340-
// Check if any block number is <= 6000000 and >= 3853944
341-
threshold2 := big.NewInt(6000000)
340+
// Check if any block number is <= 25431538 and >= 3853944
341+
threshold2 := big.NewInt(25431538)
342342
threshold1 := big.NewInt(3853944)
343343
for _, blockNum := range blockNumbers {
344344
if blockNum.Cmp(threshold1) > 0 && blockNum.Cmp(threshold2) <= 0 {

0 commit comments

Comments
 (0)