Skip to content

Commit d522613

Browse files
committed
Remove duplicate import
1 parent f125272 commit d522613

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

espresso/environment/3_2_espresso_deterministic_state_test.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import (
2222
"github.com/ethereum-optimism/optimism/op-node/rollup/derive"
2323
"github.com/ethereum/go-ethereum/accounts/abi/bind"
2424
"github.com/ethereum/go-ethereum/common/hexutil"
25-
"github.com/ethereum/go-ethereum/core/types"
2625
geth_types "github.com/ethereum/go-ethereum/core/types"
2726
"github.com/ethereum/go-ethereum/crypto"
2827
"github.com/ethereum/go-ethereum/log"
@@ -237,8 +236,7 @@ func createEspressoTransaction(transactionString string, chainID *big.Int, batch
237236
}
238237

239238
// espressoTransactionDataSkippingUnmarshal extract the L1 info deposit from Espresso transaction without checking whether the unmarshal could work
240-
func espressoTransactionDataSkippingUnmarshal(transactionString string) (*types.Transaction, error) {
241-
239+
func espressoTransactionDataSkippingUnmarshal(transactionString string) (*geth_types.Transaction, error) {
242240
bufData, err := hexutil.Decode(transactionString)
243241
if err != nil {
244242
return nil, fmt.Errorf("failed to decode Espresso transaction in the test: %w", err)

0 commit comments

Comments
 (0)