diff --git a/frontend/src/app/components/block/block.component.ts b/frontend/src/app/components/block/block.component.ts index f8c41a08e..e2fdd31ec 100644 --- a/frontend/src/app/components/block/block.component.ts +++ b/frontend/src/app/components/block/block.component.ts @@ -62,7 +62,7 @@ export class BlockComponent implements OnInit { this.isLoadingBlock = false; this.setBlockSubsidy(); if (block.reward) { - this.fees = block.reward / 100000000; + this.fees = block.reward / 100000000 - this.blockSubsidy; } this.getBlockTransactions(block.id); },