diff --git a/pkg/types/automation/interfaces.go b/pkg/types/automation/interfaces.go index fa3ca0b67..a42913ef7 100644 --- a/pkg/types/automation/interfaces.go +++ b/pkg/types/automation/interfaces.go @@ -48,17 +48,10 @@ type Encoder interface { type LogEventProvider interface { GetLatestPayloads(context.Context) ([]UpkeepPayload, error) - SetConfig(LogEventProviderConfig) Start(context.Context) error Close() error } -type LogEventProviderConfig struct { - NumLogUpkeeps uint32 - FastExecLogsHigh uint32 - FastExecLogsLow uint32 -} - type RecoverableProvider interface { GetRecoveryProposals(context.Context) ([]UpkeepPayload, error) }