Bugfixes.

This commit is contained in:
softsimon
2020-03-27 01:29:55 +07:00
parent 12546e1096
commit 550a096749
3 changed files with 8 additions and 2 deletions

View File

@@ -42,6 +42,11 @@ export class TransactionsListComponent implements OnInit, OnChanges {
observableObject[i] = this.electrsApiService.getOutspends$(tx.txid);
});
if (Object.keys(observableObject).length > 100) {
console.log('Too many outspends requests');
return;
}
forkJoin(observableObject)
.subscribe((outspends: any) => {
const newOutspends = [];