Show Avg fees per block instead of Reward Per Tx

This commit is contained in:
nymkappa
2023-01-07 20:55:59 +01:00
parent 5905eebaa6
commit 8a3bcd3b28
2 changed files with 8 additions and 8 deletions

View File

@@ -42,8 +42,8 @@ export class RewardStatsComponent implements OnInit {
map((stats) => {
return {
totalReward: stats.totalReward,
rewardPerTx: stats.totalReward / stats.totalTx,
feePerTx: stats.totalFee / stats.totalTx,
feePerBlock: stats.totalFee / 144,
};
})
);