Skip to content

Commit 95df09c

Browse files
fix(wrw): adding txBase64 to valid recovery check
2 parents 69f9ec3 + f20570f commit 95df09c

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)