diff --git a/ts_src/client.ts b/ts_src/client.ts
index e4b8cb5..76eddb6 100644
--- a/ts_src/client.ts
+++ b/ts_src/client.ts
@@ -157,11 +157,6 @@ export class PayjoinClient {
// Verify the PSBT input is not finalized
if (isFinalized(proposedPSBTInput))
throw new Error('The receiver finalized one of our inputs');
- // Verify that non_witness_utxo and witness_utxo are not specified.
- if (proposedPSBTInput.nonWitnessUtxo || proposedPSBTInput.witnessUtxo)
- throw new Error(
- 'The receiver added non_witness_utxo or witness_utxo to one of our inputs',
- );
if (proposedTxIn.sequence != null) {
sequences.add(proposedTxIn.sequence);
}