Skip to content

Commit

Permalink
Fix V2Account pubkey should be in base64 format (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Jun 17, 2023
1 parent df1a0e8 commit 4a51d20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1206,7 +1206,7 @@ class WalletConnectActivity : BaseActivity() {
return key?.let {
V2Account(
"secp256k1",
Utils.bytesToHex(it.pubKey),
Base64.encodeToString(it.pubKey, Base64.NO_WRAP),
account.address,
)
}
Expand Down

0 comments on commit 4a51d20

Please sign in to comment.