Skip to content

Commit

Permalink
Set transaction resultStatus to REDIRECTED when redirect happens
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobmischka committed Aug 25, 2022
1 parent d0f96fd commit 3feba30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internalRpcSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ export const clientSchema = {
TRANSACTION_COMPLETED: {
inputs: z.object({
transactionId: z.string(),
resultStatus: z.enum(['SUCCESS', 'FAILURE', 'CANCELED']),
resultStatus: z.enum(['SUCCESS', 'FAILURE', 'CANCELED', 'REDIRECTED']),
}),
returns: z.void().nullable(),
},
Expand Down

0 comments on commit 3feba30

Please sign in to comment.