fix: router fees for EIP1559

This commit is contained in:
Anthony Laibe 2022-11-14 12:09:34 +01:00 committed by Anthony Laibe
parent 7662cd613a
commit 7ea9a3f230
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ type SuggestedFees struct {
}
func (s *SuggestedFees) feeFor(mode GasFeeMode) *big.Float {
if s.EIP1559Enabled {
if !s.EIP1559Enabled {
return s.GasPrice
}