From 42abf87f77eedc5bcfd61cb8ed48812d8c37a810 Mon Sep 17 00:00:00 2001 From: Vladyslav Budichenko Date: Mon, 4 Nov 2024 11:26:17 -0500 Subject: [PATCH] wip: update e2e test for debugging --- ethereum/eip712/eip712.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ethereum/eip712/eip712.go b/ethereum/eip712/eip712.go index 6371599664..83cbbffb13 100644 --- a/ethereum/eip712/eip712.go +++ b/ethereum/eip712/eip712.go @@ -38,6 +38,7 @@ func ConstructUntypedEIP712Data( msgs []sdk.Msg, memo string, ) []byte { + fmt.Println("ConstructUntypedEIP712Data") // tx.TipTx interface was removed, added types.TxWithTimeoutHeight, they have been deprecated and should not be used since v0.46.0 // Deprecated: Please use x/tx/signing/aminojson instead. signBytes := legacytx.StdSignBytes(chainID, accnum, sequence, timeout, fee, msgs, memo) @@ -52,6 +53,7 @@ func ConstructUntypedEIP712Data( // Add messages as separate fields for i := 0; i < len(msgs); i++ { + fmt.Println("ConstructUntypedEIP712Data msg", msgs[i]) msg := msgs[i] legacyMsg, ok := msg.(legacytx.LegacyMsg) if !ok {