Skip to content

Commit

Permalink
Remove address validation from QuaiTransaction.fromProto()
Browse files Browse the repository at this point in the history
  • Loading branch information
rileystephens28 committed Jun 7, 2024
1 parent bfa7f50 commit dc2704e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/transaction/quai-transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,6 @@ export class QuaiTransaction extends AbstractTransaction<Signature> implements Q

if (protoTx.to !== null) {
const toAddr = hexlify(protoTx.to!);
validateAddress(toAddr);
tx.to = toAddr;
}

Expand Down

0 comments on commit dc2704e

Please sign in to comment.