mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 14:50:52 +01:00
Fix clash w/ liquid unblinding and vin/vout syntax
This commit is contained in:
parent
eb2abefabc
commit
2c1f38aa9d
1 changed files with 7 additions and 3 deletions
|
@ -126,9 +126,13 @@ export class LiquidUnblinding {
|
|||
}
|
||||
|
||||
async checkUnblindedTx(tx: Transaction) {
|
||||
const windowLocationHash = window.location.hash.substring('#blinded='.length);
|
||||
if (windowLocationHash.length > 0) {
|
||||
const blinders = this.parseBlinders(windowLocationHash);
|
||||
if (!window.location.hash?.length) {
|
||||
return tx;
|
||||
}
|
||||
const fragmentParams = new URLSearchParams(window.location.hash.slice(1) || '');
|
||||
const blinderStr = fragmentParams.get('blinded');
|
||||
if (blinderStr && blinderStr.length) {
|
||||
const blinders = this.parseBlinders(blinderStr);
|
||||
if (blinders) {
|
||||
this.commitments = await this.makeCommitmentMap(blinders);
|
||||
return this.tryUnblindTx(tx);
|
||||
|
|
Loading…
Add table
Reference in a new issue