Skip to content

Commit

Permalink
exporter: fix initializing execution_payloads_exporter.CachedViewMutex (
Browse files Browse the repository at this point in the history
  • Loading branch information
guybrush authored Jun 6, 2024
1 parent 9dd6f66 commit eed4572
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions backend/pkg/exporter/modules/execution_payloads_exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{},
}
}

Expand Down

0 comments on commit eed4572

Please sign in to comment.