Merge pull request #735 from mempool/simon/bisq-tx-redirect-fix
Redirect unconfirmed bisq transactions to main website for tracking.
This commit is contained in:
commit
4b72a14706
@ -85,7 +85,11 @@ export class BisqTransactionComponent implements OnInit, OnDestroy {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (tx.version) {
|
if (tx.version) {
|
||||||
this.router.navigate(['/tx/', this.txId], { state: { data: tx, bsqTx: true }});
|
if (this.stateService.env.BASE_MODULE === 'bisq') {
|
||||||
|
window.location.replace('https://mempool.space/tx/' + this.txId);
|
||||||
|
} else {
|
||||||
|
this.router.navigate(['/tx/', this.txId], { state: { data: tx, bsqTx: true }});
|
||||||
|
}
|
||||||
return of(null);
|
return of(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user