Skip to content

Commit 79154f9

Browse files
feat: backwards compatible change for tezos_send response
1 parent f193232 commit 79154f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: advanced/wallets/react-wallet-v2/src/utils/TezosRequestHandlerUtil.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export async function approveTezosRequest(
2727
case TEZOS_SIGNING_METHODS.TEZOS_SEND:
2828
const sendResponse = await wallet.signTransaction(request.params.operations)
2929

30-
return formatJsonRpcResult(id, { hash: sendResponse })
30+
return formatJsonRpcResult(id, { hash: sendResponse, operationHash: sendResponse })
3131

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

0 commit comments

Comments
 (0)