Merge pull request #1310 from nymkappa/bugfix/auto-refresh-reward-stats
Bugfix/auto refresh reward stats
This commit is contained in:
commit
09e3791cee
@ -31,7 +31,7 @@ export class MiningDashboardComponent implements OnInit {
|
|||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
this.$rewardStats = this.stateService.blocks$.pipe(
|
this.$rewardStats = this.stateService.blocks$.pipe(
|
||||||
map(([block]) => {
|
map(([block]) => {
|
||||||
this.blocks.push(block);
|
this.blocks.unshift(block);
|
||||||
this.blocks = this.blocks.slice(0, 8);
|
this.blocks = this.blocks.slice(0, 8);
|
||||||
const totalTx = this.blocks.reduce((acc, block) => acc + block.tx_count, 0);
|
const totalTx = this.blocks.reduce((acc, block) => acc + block.tx_count, 0);
|
||||||
const totalFee = this.blocks.reduce((acc, block) => acc + block.extras?.totalFees ?? 0, 0);
|
const totalFee = this.blocks.reduce((acc, block) => acc + block.extras?.totalFees ?? 0, 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user