Skip to content

Commit

Permalink
Increased coinbase reward by a factor of 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
jdowning100 committed Apr 12, 2023
1 parent c203a44 commit 4868e62
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions consensus/misc/rewards.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (
// For each zone = Reward/(3*regions*zones*time-factor^2)
func CalculateReward() *big.Int {
reward := big.NewInt(5e18)
reward.Mul(reward, big.NewInt(1000))
timeFactor := big.NewInt(10)
regions := big.NewInt(3)
zones := big.NewInt(3)
Expand Down

0 comments on commit 4868e62

Please sign in to comment.