Replace all avg_XXX with avgXXX for consistency

This commit is contained in:
nymkappa
2022-05-20 09:44:29 +02:00
parent fb134d70e4
commit c6b4a7464c
5 changed files with 27 additions and 27 deletions

View File

@@ -71,7 +71,7 @@ export class BlockFeesGraphComponent implements OnInit {
.pipe(
tap((response) => {
this.prepareChartOptions({
blockFees: response.body.map(val => [val.timestamp * 1000, val.avg_fees / 100000000]),
blockFees: response.body.map(val => [val.timestamp * 1000, val.avgFees / 100000000]),
});
this.isLoading = false;
}),