Skip to content

Commit f20570f

Browse files
fix(wrw): adding txBase64 to valid recovery check
Ticket: WP-1784
1 parent 69f9ec3 commit f20570f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/helpers/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export function isRecoveryTransaction(
6666
) {
6767
return (
6868
('txHex' in value && !!value['txHex']) ||
69+
('txBase64' in value && !!value['txBase64']) ||
6970
('transactionHex' in value && !!value['transactionHex']) ||
7071
('tx' in value && !!value['tx']) ||
7172
('transaction' in value && !!value['transaction']) ||

0 commit comments

Comments
 (0)