Skip to content

Commit

Permalink
rm b64encode
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Feb 21, 2024
1 parent 1a140d8 commit 8d83eb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration_tests/eip712_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,12 +235,12 @@ def create_transaction_with_multiple_messages(
"legacyAmino": {
"body": body,
"authInfo": auth_info_amino,
"signBytes": base64.b64encode(to_sign_amino),
"signBytes": to_sign_amino,
},
"signDirect": {
"body": body,
"authInfo": auth_info_direct,
"signBytes": base64.b64encode(to_sign_direct),
"signBytes": to_sign_direct,
},
}

Expand Down

0 comments on commit 8d83eb9

Please sign in to comment.