From a92a21b99d30370787311bce2dad7ca0394900b9 Mon Sep 17 00:00:00 2001 From: Peter Kieltyka Date: Fri, 13 Dec 2024 13:08:37 -0500 Subject: [PATCH] update --- ethcoder/typed_data_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/ethcoder/typed_data_test.go b/ethcoder/typed_data_test.go index 5ae0b9d..9ea218b 100644 --- a/ethcoder/typed_data_test.go +++ b/ethcoder/typed_data_test.go @@ -8,7 +8,6 @@ import ( "github.com/0xsequence/ethkit/ethcoder" "github.com/0xsequence/ethkit/ethwallet" "github.com/0xsequence/ethkit/go-ethereum/common" - "github.com/davecgh/go-spew/spew" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) @@ -255,8 +254,6 @@ func TestTypedDataFromJSONPart2(t *testing.T) { typedData, err := ethcoder.TypedDataFromJSON(typedDataJson) require.NoError(t, err) - spew.Dump(typedData) - domainHash, err := typedData.HashStruct("EIP712Domain", typedData.Domain.Map()) require.NoError(t, err) require.Equal(t, "0xf2cee375fa42b42143804025fc449deafd50cc031ca257e0b194a650a912090f", ethcoder.HexEncode(domainHash))