Skip to content

Commit 649568c

Browse files
committed
fix json
1 parent d10fdba commit 649568c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x/evm/types/eth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func (tx *EthereumTx) UnmarshalJSON(bz []byte) error {
5252
if err := json.Unmarshal(bz, &data); err != nil {
5353
return err
5454
}
55-
return tx.UnmarshalBinary(data)
55+
return tx.Unmarshal(data)
5656
}
5757

5858
func (tx EthereumTx) MarshalJSON() ([]byte, error) {

0 commit comments

Comments
 (0)