From 0150dbc876e3a37d7c6197d0e62a399040cfda85 Mon Sep 17 00:00:00 2001 From: MalteHerrmann Date: Sun, 4 Aug 2024 17:27:54 +0200 Subject: [PATCH] remove unnecessary legacy import --- ethereum/eip712/eip712_test.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/ethereum/eip712/eip712_test.go b/ethereum/eip712/eip712_test.go index cbedc7c8..18c22d19 100644 --- a/ethereum/eip712/eip712_test.go +++ b/ethereum/eip712/eip712_test.go @@ -5,9 +5,6 @@ import ( "fmt" "testing" - // TODO: this import is required for the tests to pass, remove after porting the crypto package - evmoseip712 "github.com/evmos/evmos/v19/ethereum/eip712" - "cosmossdk.io/math" chainparams "cosmossdk.io/simapp/params" "github.com/cosmos/cosmos-sdk/client" @@ -74,11 +71,6 @@ func (suite *EIP712TestSuite) SetupTest() { sdk.GetConfig().SetBech32PrefixForAccount(config.Bech32Prefix, "") eip712.SetEncodingConfig(suite.config) - - // TODO: this is required for the tests to pass because the encoding is called from the original - // Evmos repo during one function from the crypto/... package. - // TODO: remove once it's ported to the new repo - evmoseip712.SetEncodingConfig(suite.config) } // createTestAddress creates random test addresses for messages