From bd1c3241554cbbf3a905a3cf1554368870dacf9e Mon Sep 17 00:00:00 2001 From: Brandon Liu Date: Fri, 29 Mar 2024 22:28:40 +0800 Subject: [PATCH] fix(pkg): remove redundant alias (#665) Co-authored-by: David --- driver/chain_syncer/calldata/syncer.go | 2 +- pkg/rpc/methods.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/driver/chain_syncer/calldata/syncer.go b/driver/chain_syncer/calldata/syncer.go index b6604e05a..6b678ffe2 100644 --- a/driver/chain_syncer/calldata/syncer.go +++ b/driver/chain_syncer/calldata/syncer.go @@ -15,7 +15,7 @@ import ( "github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/rlp" - ethereum "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum" "github.com/taikoxyz/taiko-client/bindings" "github.com/taikoxyz/taiko-client/bindings/encoding" anchorTxConstructor "github.com/taikoxyz/taiko-client/driver/anchor_tx_constructor" diff --git a/pkg/rpc/methods.go b/pkg/rpc/methods.go index 4dec66a40..8910f08eb 100644 --- a/pkg/rpc/methods.go +++ b/pkg/rpc/methods.go @@ -8,7 +8,7 @@ import ( "time" "github.com/cenkalti/backoff/v4" - ethereum "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum" "github.com/ethereum/go-ethereum/accounts/abi/bind" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil"