From ab9b0482eb1599e90a74524668692052c9d52f02 Mon Sep 17 00:00:00 2001 From: invis-bitfly <162128378+invis-bitfly@users.noreply.github.com> Date: Thu, 9 Jan 2025 12:42:11 +0100 Subject: [PATCH] fix(exporter): remove unused import --- backend/pkg/exporter/modules/execution_payloads_exporter.go | 1 - backend/pkg/exporter/modules/execution_rewards_finalizer.go | 2 -- 2 files changed, 3 deletions(-) diff --git a/backend/pkg/exporter/modules/execution_payloads_exporter.go b/backend/pkg/exporter/modules/execution_payloads_exporter.go index cd456c5b6..7266821cc 100644 --- a/backend/pkg/exporter/modules/execution_payloads_exporter.go +++ b/backend/pkg/exporter/modules/execution_payloads_exporter.go @@ -6,7 +6,6 @@ import ( "fmt" "math/big" "sync" - "time" "github.com/gobitfly/beaconchain/pkg/commons/db" "github.com/gobitfly/beaconchain/pkg/commons/log" diff --git a/backend/pkg/exporter/modules/execution_rewards_finalizer.go b/backend/pkg/exporter/modules/execution_rewards_finalizer.go index 0765b8d33..c2cbf20a1 100644 --- a/backend/pkg/exporter/modules/execution_rewards_finalizer.go +++ b/backend/pkg/exporter/modules/execution_rewards_finalizer.go @@ -24,7 +24,6 @@ func NewExecutionRewardFinalizer(moduleContext ModuleContext) ModuleInterface { } func (d *executionRewardsFinalizer) Init() error { - log.Infof("hi") return nil } @@ -37,7 +36,6 @@ func (d *executionRewardsFinalizer) OnChainReorg(event *constypes.StandardEventC } func (d *executionRewardsFinalizer) OnFinalizedCheckpoint(event *constypes.StandardFinalizedCheckpointResponse) (err error) { - return nil // nop }