We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b10c98a commit 714b211Copy full SHA for 714b211
internal/rpc/rpc.go
@@ -337,8 +337,8 @@ func (rpc *Client) needsChain296SpecialHandling(blockNumbers []*big.Int) bool {
337
return false
338
}
339
340
- // Check if any block number is <= 6000000 and >= 3853944
341
- threshold2 := big.NewInt(6000000)
+ // Check if any block number is <= 25431538 and >= 3853944
+ threshold2 := big.NewInt(25431538)
342
threshold1 := big.NewInt(3853944)
343
for _, blockNum := range blockNumbers {
344
if blockNum.Cmp(threshold1) > 0 && blockNum.Cmp(threshold2) <= 0 {
0 commit comments