From 086573b1190c7ee659b659c41a57ea9c7a504e94 Mon Sep 17 00:00:00 2001 From: natsoni Date: Tue, 14 Oct 2025 12:32:24 +0200 Subject: [PATCH] Support utxo bubble graph on electrum backends --- frontend/src/app/components/address/address.component.html | 2 +- frontend/src/app/components/address/address.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/components/address/address.component.html b/frontend/src/app/components/address/address.component.html index b1d96a620..b1b51360d 100644 --- a/frontend/src/app/components/address/address.component.html +++ b/frontend/src/app/components/address/address.component.html @@ -108,7 +108,7 @@ - +

Unspent Outputs

diff --git a/frontend/src/app/components/address/address.component.ts b/frontend/src/app/components/address/address.component.ts index 32867b3ba..31d2fc600 100644 --- a/frontend/src/app/components/address/address.component.ts +++ b/frontend/src/app/components/address/address.component.ts @@ -221,7 +221,7 @@ export class AddressComponent implements OnInit, OnDestroy { address.is_pubkey ? this.electrsApiService.getScriptHashTransactions$((address.address.length === 66 ? '21' : '41') + address.address + 'ac') : this.electrsApiService.getAddressTransactions$(address.address), - (utxoCount > 2 && utxoCount <= 500 ? (address.is_pubkey + ((utxoCount > 2 && utxoCount <= 500) || this.address.electrum ? (address.is_pubkey ? this.electrsApiService.getScriptHashUtxos$((address.address.length === 66 ? '21' : '41') + address.address + 'ac') : this.electrsApiService.getAddressUtxos$(address.address)) : of(null)).pipe( catchError(() => {