change response to base58

This commit is contained in:
PhilReact 2025-01-08 20:52:51 +02:00
parent 24a1a0eebf
commit 4376c906bc

View File

@ -3209,7 +3209,7 @@ export const signTransaction = async (data, isFromExtension) => {
const signedBytesToBase58 = Base58.encode(signedBytes); const signedBytesToBase58 = Base58.encode(signedBytes);
if(!shouldProcess){ if(!shouldProcess){
return uint8ArrayToBase64(signedBytes); return signedBytesToBase58
} }
const res = await processTransactionVersion2(signedBytesToBase58); const res = await processTransactionVersion2(signedBytesToBase58);