@@ -6,16 +6,16 @@ import (
66 "fmt"
77 "strings"
88
9+ gethCommon "github.com/ethereum/go-ethereum/common"
10+ gethTypes "github.com/ethereum/go-ethereum/core/types"
11+ "github.com/ethereum/go-ethereum/eth/tracers"
12+ "github.com/ethereum/go-ethereum/eth/tracers/logger"
13+ gethParams "github.com/ethereum/go-ethereum/params"
14+ "github.com/ethereum/go-ethereum/rpc"
915 "github.com/goccy/go-json"
1016 "github.com/onflow/flow-go/fvm/evm/emulator"
1117 "github.com/onflow/flow-go/fvm/evm/offchain/query"
1218 "github.com/onflow/flow-go/fvm/evm/types"
13- gethCommon "github.com/onflow/go-ethereum/common"
14- gethTypes "github.com/onflow/go-ethereum/core/types"
15- "github.com/onflow/go-ethereum/eth/tracers"
16- "github.com/onflow/go-ethereum/eth/tracers/logger"
17- gethParams "github.com/onflow/go-ethereum/params"
18- "github.com/onflow/go-ethereum/rpc"
1919 "github.com/rs/zerolog"
2020
2121 "github.com/onflow/flow-evm-gateway/config"
@@ -33,8 +33,8 @@ import (
3333
3434 // this import is needed for side-effects, because the
3535 // tracers.DefaultDirectory is relying on the init function
36- _ "github.com/onflow /go-ethereum/eth/tracers/js"
37- _ "github.com/onflow /go-ethereum/eth/tracers/native"
36+ _ "github.com/ethereum /go-ethereum/eth/tracers/js"
37+ _ "github.com/ethereum /go-ethereum/eth/tracers/native"
3838)
3939
4040// txTraceResult is the result of a single transaction trace.
0 commit comments