From 40659c1ae5301d52832bd0e25c0768c6cbe05b74 Mon Sep 17 00:00:00 2001 From: Krypto Kajun Date: Sat, 8 Nov 2025 12:18:54 -0600 Subject: [PATCH] fix: add missing imports and remove unused imports --- pkg/execution/execution_test.go | 2 -- pkg/scanner/swap/analyzer_test.go | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/execution/execution_test.go b/pkg/execution/execution_test.go index fc4bb30..29ca25b 100644 --- a/pkg/execution/execution_test.go +++ b/pkg/execution/execution_test.go @@ -8,8 +8,6 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/stretchr/testify/assert" - - "github.com/fraktal/mev-beta/internal/logger" ) func TestExecutionModes(t *testing.T) { diff --git a/pkg/scanner/swap/analyzer_test.go b/pkg/scanner/swap/analyzer_test.go index e09001e..ee78512 100644 --- a/pkg/scanner/swap/analyzer_test.go +++ b/pkg/scanner/swap/analyzer_test.go @@ -5,6 +5,7 @@ import ( "testing" "time" + "github.com/ethereum/go-ethereum/common" "github.com/stretchr/testify/assert" "github.com/fraktal/mev-beta/internal/logger"