Skip to content

Commit a5a9469

Browse files
committed
fix(trx): wrw allows to build trx token sweep
EA-1308
1 parent 8e36696 commit a5a9469

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/helpers/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ export function isRecoveryTransaction(
6666
('tx' in value && !!value['tx']) ||
6767
('transaction' in value && !!value['transaction']) ||
6868
('txid' in value && !!value['txid']) ||
69-
('serializedTx' in value && !!value['serializedTx'])
69+
('serializedTx' in value && !!value['serializedTx']) ||
70+
('tokenTxs' in value && !!value['tokenTxs'])
7071
);
7172
}
7273

0 commit comments

Comments
 (0)