Skip to content

Commit

Permalink
fix: change bribe EOA boost 10% to 1%
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolly23 committed Dec 13, 2024
1 parent 6775603 commit 615fa16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions miner/bid_simulator.go
Original file line number Diff line number Diff line change
Expand Up @@ -799,8 +799,8 @@ func (r *BidRuntime) totalReward() *big.Int {

func calcRewardAfterBEP95(preBEP95 *big.Int) *big.Int {
return new(big.Int).Div(
new(big.Int).Mul(preBEP95, big.NewInt(9)),
big.NewInt(10),
new(big.Int).Mul(preBEP95, big.NewInt(99)),
big.NewInt(100),
)
}

Expand Down

0 comments on commit 615fa16

Please sign in to comment.