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 cce9ea8d8f
commit 0933b73560

View File

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