diff --git a/core/chains/evm/gas/mocks/evm_fee_estimator.go b/core/chains/evm/gas/mocks/evm_fee_estimator.go index 78317bc7f9f..8fb0409154f 100644 --- a/core/chains/evm/gas/mocks/evm_fee_estimator.go +++ b/core/chains/evm/gas/mocks/evm_fee_estimator.go @@ -7,6 +7,8 @@ import ( assets "github.com/smartcontractkit/chainlink/v2/core/assets" + chainoracles "github.com/smartcontractkit/chainlink/v2/core/chains/evm/gas/chainoracles" + context "context" evmtypes "github.com/smartcontractkit/chainlink/v2/core/chains/evm/types" @@ -156,15 +158,15 @@ func (_m *EvmFeeEstimator) HealthReport() map[string]error { } // L1Oracle provides a mock function with given fields: -func (_m *EvmFeeEstimator) L1Oracle() gas.L1Oracle { +func (_m *EvmFeeEstimator) L1Oracle() chainoracles.L1Oracle { ret := _m.Called() - var r0 gas.L1Oracle - if rf, ok := ret.Get(0).(func() gas.L1Oracle); ok { + var r0 chainoracles.L1Oracle + if rf, ok := ret.Get(0).(func() chainoracles.L1Oracle); ok { r0 = rf() } else { if ret.Get(0) != nil { - r0 = ret.Get(0).(gas.L1Oracle) + r0 = ret.Get(0).(chainoracles.L1Oracle) } }