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 a75900f commit c291a65Copy full SHA for c291a65
params/config.go
@@ -898,12 +898,6 @@ func (c *ChainConfig) IsOptimismJovian(time uint64) bool {
898
return c.IsOptimism() && c.IsJovian(time)
899
}
900
901
-// IsOperatorFeeFix returns true if the operator fee fix feature is active.
902
-// TODO(fakedev9999): decouple from Jovian activation by wiring this into an explicit feature toggle.
903
-func (c *ChainConfig) IsOperatorFeeFix(time uint64) bool {
904
- return c.IsOptimismJovian(time)
905
-}
906
-
907
// IsOptimismPreBedrock returns true iff this is an optimism node & bedrock is not yet active
908
func (c *ChainConfig) IsOptimismPreBedrock(num *big.Int) bool {
909
return c.IsOptimism() && !c.IsBedrock(num)
0 commit comments