Skip to content

Commit

Permalink
Change cancelled peg-out tx error message
Browse files Browse the repository at this point in the history
  • Loading branch information
lserra-iov authored and alexjavabraz committed Apr 5, 2024
1 parent 8f681b7 commit a2f4c85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/services/FlyoverService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export default class FlyoverService {
reject(new ServiceError(
'FlyoverService',
'acceptAndSendPegoutQuote',
'Deposit failed',
"We didn't receive confirmation for your transaction. If you intended to complete it, please try again.",
error.message,
));
});
Expand Down
2 changes: 1 addition & 1 deletion src/pegout/store/pegoutTx/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const actions: ActionTree<PegOutTxState, RootState> = {
reject(new ServiceError(
'RSKBlockchain',
constants.PEGOUT_TX_SEND,
'User Cancelled transaction',
"We didn't receive confirmation for your transaction. If you intended to complete it, please try again.",
e.message,
));
});
Expand Down

0 comments on commit a2f4c85

Please sign in to comment.