Replace all avg_XXX with avgXXX for consistency

This commit is contained in:
nymkappa
2022-05-20 09:44:29 +02:00
parent 0f0a46cd5c
commit e101c4e218
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;
}),