mirror of
https://github.com/mempool/mempool.git
synced 2024-12-29 01:34:28 +01:00
prefer const
over let
This commit is contained in:
parent
30632e9e11
commit
44021a3cb3
@ -216,7 +216,7 @@ export class BlockComponent implements OnInit, OnDestroy {
|
|||||||
this.blockSubsidy = 0;
|
this.blockSubsidy = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let halvings = Math.floor(this.block.height / (this.network === 'regtest' ? 150 : 210000));
|
const halvings = Math.floor(this.block.height / (this.network === 'regtest' ? 150 : 210000));
|
||||||
this.blockSubsidy = 50 * 2 ** -halvings;
|
this.blockSubsidy = 50 * 2 ** -halvings;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user