Address value did not calculate self transfers

This commit is contained in:
softsimon 2022-03-15 15:25:19 +01:00
parent a292745ea7
commit 7854b6fcb3
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7

View File

@ -111,7 +111,7 @@ export class TransactionsListComponent implements OnInit, OnChanges {
.map((v: Vin) => v.prevout.value || 0)
.reduce((a: number, b: number) => a + b, 0);
tx['addressValue'] = addressIn || -addressOut;
tx['addressValue'] = addressIn - addressOut;
}
observableObject[i] = this.electrsApiService.getOutspends$(tx.txid);