diff --git a/backend/pkg/exporter/modules/execution_payloads_exporter.go b/backend/pkg/exporter/modules/execution_payloads_exporter.go index c52ab56b1..bcd677ba0 100644 --- a/backend/pkg/exporter/modules/execution_payloads_exporter.go +++ b/backend/pkg/exporter/modules/execution_payloads_exporter.go @@ -25,8 +25,9 @@ type executionPayloadsExporter struct { func NewExecutionPayloadsExporter(moduleContext ModuleContext) ModuleInterface { return &executionPayloadsExporter{ - ModuleContext: moduleContext, - ExportMutex: &sync.Mutex{}, + ModuleContext: moduleContext, + ExportMutex: &sync.Mutex{}, + CachedViewMutex: &sync.Mutex{}, } }