Skip to content

Commit

Permalink
Correct hardcoded gas limit for mainnet (#2272)
Browse files Browse the repository at this point in the history
This fixes a typo in the hardcoded historical gas limits

Relates to #2229 #2214
  • Loading branch information
piersy authored Mar 4, 2024
1 parent 2aa6d46 commit a3a9e0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ var (
{big.NewInt(3251772), 13e6},
{big.NewInt(6137285), 20e6},
{big.NewInt(13562578), 50e6},
{big.NewInt(14137511), 13e6},
{big.NewInt(14137511), 20e6},
{big.NewInt(21355415), 32e6},
},
}
Expand Down

0 comments on commit a3a9e0e

Please sign in to comment.