This commit is contained in:
natsoni 2026-08-08 21:34:11 -07:00 committed by GitHub
commit 421884374a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -121,7 +121,7 @@
</div>
</ng-container>
<ng-container *ngIf="(stateService.backend$ | async) === 'esplora' && address && utxos && utxos.length > 2">
<ng-container *ngIf="address && utxos && utxos.length > 2">
<br>
<div class="title-tx">
<h2 class="text-start" i18n="address.unspent-outputs">Unspent Outputs</h2>

View file

@ -252,7 +252,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(() => {