Skip to content

Commit

Permalink
feat: backwards compatible change for tezos_send response
Browse files Browse the repository at this point in the history
  • Loading branch information
dianasavvatina committed Jan 6, 2025
1 parent f193232 commit 79154f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export async function approveTezosRequest(
case TEZOS_SIGNING_METHODS.TEZOS_SEND:
const sendResponse = await wallet.signTransaction(request.params.operations)

return formatJsonRpcResult(id, { hash: sendResponse })
return formatJsonRpcResult(id, { hash: sendResponse, operationHash: sendResponse })

case TEZOS_SIGNING_METHODS.TEZOS_SIGN:
const signResponse = await wallet.signPayload(request.params.payload)
Expand Down

0 comments on commit 79154f9

Please sign in to comment.