Skip to content

Commit

Permalink
wip: update e2e test for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
boodyvo committed Nov 4, 2024
1 parent 8a2ef3e commit 42abf87
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ethereum/eip712/eip712.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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 {
Expand Down

0 comments on commit 42abf87

Please sign in to comment.