diff --git a/core/chains/evm/config/mocks/gas_estimator.go b/core/chains/evm/config/mocks/gas_estimator.go index 70b9c18d0bf..44013768156 100644 --- a/core/chains/evm/config/mocks/gas_estimator.go +++ b/core/chains/evm/config/mocks/gas_estimator.go @@ -253,6 +253,53 @@ func (_c *GasEstimator_BumpTxDepth_Call) RunAndReturn(run func() uint32) *GasEst return _c } +// DAOracle provides a mock function with given fields: +func (_m *GasEstimator) DAOracle() config.DAOracle { + ret := _m.Called() + + if len(ret) == 0 { + panic("no return value specified for DAOracle") + } + + var r0 config.DAOracle + if rf, ok := ret.Get(0).(func() config.DAOracle); ok { + r0 = rf() + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(config.DAOracle) + } + } + + return r0 +} + +// GasEstimator_DAOracle_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DAOracle' +type GasEstimator_DAOracle_Call struct { + *mock.Call +} + +// DAOracle is a helper method to define mock.On call +func (_e *GasEstimator_Expecter) DAOracle() *GasEstimator_DAOracle_Call { + return &GasEstimator_DAOracle_Call{Call: _e.mock.On("DAOracle")} +} + +func (_c *GasEstimator_DAOracle_Call) Run(run func()) *GasEstimator_DAOracle_Call { + _c.Call.Run(func(args mock.Arguments) { + run() + }) + return _c +} + +func (_c *GasEstimator_DAOracle_Call) Return(_a0 config.DAOracle) *GasEstimator_DAOracle_Call { + _c.Call.Return(_a0) + return _c +} + +func (_c *GasEstimator_DAOracle_Call) RunAndReturn(run func() config.DAOracle) *GasEstimator_DAOracle_Call { + _c.Call.Return(run) + return _c +} + // EIP1559DynamicFees provides a mock function with given fields: func (_m *GasEstimator) EIP1559DynamicFees() bool { ret := _m.Called()