Address widget timespans

This commit is contained in:
Mononaut
2024-04-26 17:53:44 +00:00
parent 6eb21ffd24
commit ccb27dbdb9
5 changed files with 43 additions and 12 deletions

View File

@@ -45,7 +45,6 @@ export class BalanceWidgetComponent implements OnInit, OnChanges {
}),
).subscribe(addressSummary => {
if (addressSummary) {
console.log('got address summary!');
this.error = null;
this.calculateStats(addressSummary);
}
@@ -67,6 +66,5 @@ export class BalanceWidgetComponent implements OnInit, OnChanges {
}
this.delta7d = weekTotal;
this.delta30d = monthTotal;
console.log('calculated address stats: ', weekTotal, monthTotal);
}
}