mirror of
https://github.com/mempool/mempool.git
synced 2025-04-08 03:48:31 +02:00
Redirect unconfirmed bisq transactions to main website for tracking.
This commit is contained in:
parent
58af0d78af
commit
b34f6fedb6
@ -85,7 +85,11 @@ export class BisqTransactionComponent implements OnInit, OnDestroy {
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user