Syntax fix

This commit is contained in:
Austin Roberts 2023-10-23 12:38:48 -05:00
parent e43bc1774d
commit 3184027a2c

View File

@ -13,7 +13,7 @@ func (c *ChainConfig) Is1559(num *big.Int) bool {
log.Warn("Attempting is1559, but default PluginLoader has not been initialized") log.Warn("Attempting is1559, but default PluginLoader has not been initialized")
return c.IsLondon(num) return c.IsLondon(num)
} }
if active, ok := PluginEIPCheck(plugins.DefaultPluginLoader, "Is1559" num); ok { if active, ok := PluginEIPCheck(plugins.DefaultPluginLoader, "Is1559", num); ok {
return active return active
} }
return c.IsLondon(num) return c.IsLondon(num)