Reduce outspend API cache expiry to 250ms

This commit is contained in:
Mononaut
2023-11-11 07:46:25 +00:00
parent 3f0c3c1952
commit 6740ab61f3
2 changed files with 3 additions and 4 deletions

View File

@@ -123,7 +123,7 @@ export class TxBowtieGraphComponent implements OnInit, OnChanges {
.pipe(
switchMap((txid) => {
if (!this.cached) {
return this.apiService.cachedRequest(this.apiService.getOutspendsBatched$, 5000, [txid]);
return this.apiService.cachedRequest(this.apiService.getOutspendsBatched$, 250, [txid]);
} else {
return of(null);
}