Liquid unblinding: Don't throw error as default for regular liquid transactions.

This commit is contained in:
softsimon 2021-08-21 03:13:39 +03:00
parent 7e89de4612
commit 4376de85ff
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7

View File

@ -134,6 +134,6 @@ export class LiquidUnblinding {
return this.tryUnblindTx(tx);
}
}
throw new Error('Invalid blinding data.');
return tx;
}
}