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

@@ -69,7 +69,7 @@ export class BlockRewardsGraphComponent implements OnInit {
.pipe(
tap((response) => {
this.prepareChartOptions({
blockRewards: response.body.map(val => [val.timestamp * 1000, val.avg_rewards / 100000000]),
blockRewards: response.body.map(val => [val.timestamp * 1000, val.avgRewards / 100000000]),
});
this.isLoading = false;
}),