Skip to content

Commit

Permalink
fix(trx): wrw allows to build trx token sweep
Browse files Browse the repository at this point in the history
  • Loading branch information
evanzbitgo committed Aug 21, 2023
1 parent 779d803 commit 0d5737d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/helpers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ export function isRecoveryTransaction(
('tx' in value && !!value['tx']) ||
('transaction' in value && !!value['transaction']) ||
('txid' in value && !!value['txid']) ||
('serializedTx' in value && !!value['serializedTx'])
('serializedTx' in value && !!value['serializedTx']) ||
('tokenTxs' in value && !!value['tokenTxs'])
);
}

Expand Down

0 comments on commit 0d5737d

Please sign in to comment.