Skip to content

Commit

Permalink
fix: inconsistent logic between TypeAny[] and TypeAny in EIP712
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonberg1997 committed Oct 4, 2023
1 parent e02e6c0 commit c11cd0c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions x/auth/tx/eip712.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package tx

import (
"bytes"
"encoding/base64"
"encoding/json"
"fmt"
"math/big"
Expand Down Expand Up @@ -476,8 +475,7 @@ func cleanTypesAndMsgValue(typedData apitypes.Types, primaryType string, msgValu
newValue := make(map[string]interface{})
bz, _ := json.Marshal(anyValue)
newValue["type"] = anyValue["@type"]
base64Str := base64.StdEncoding.EncodeToString(bz) // base64 encode to keep consistency with js-sdk
newValue["value"] = []byte(base64Str)
newValue["value"] = bz
msgValue[encName[:len(encName)-3]] = newValue
typedData[primaryType][i].Name = encName[:len(encName)-3]
typedData[primaryType][i].Type = "TypeAny"
Expand Down

0 comments on commit c11cd0c

Please sign in to comment.