From c14c6b00f24c7fe695951715b88d064d2166e36c Mon Sep 17 00:00:00 2001 From: yuriy0803 <68668177+yuriy0803@users.noreply.github.com> Date: Wed, 7 Jun 2023 20:56:19 +0200 Subject: [PATCH] Update unlocker.go --- payouts/unlocker.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/payouts/unlocker.go b/payouts/unlocker.go index 537faaa..9e526b5 100644 --- a/payouts/unlocker.go +++ b/payouts/unlocker.go @@ -790,28 +790,29 @@ func getConstRewardOctaspace(height int64) *big.Int { if headerNumber.Cmp(big.NewInt(400_000)) > 0 { reward = big.NewInt(500e+16) - // ArcturusBlock + // ArcturusBlock 5.00 } if headerNumber.Cmp(big.NewInt(1_000_000)) > 0 { reward = big.NewInt(400e+16) - // OldenburgBlock + // OldenburgBlock 4.00 } if headerNumber.Cmp(big.NewInt(1_500_000)) > 0 { reward = big.NewInt(350e+16) - // ZagamiBlock + // ZagamiBlock 3.50 } if headerNumber.Cmp(big.NewInt(2_000_000)) > 0 { reward = big.NewInt(300e+16) - // SpringwaterBlock + // SpringwaterBlock 3.00 } // PolarisBlock if headerNumber.Cmp(big.NewInt(2_500_000)) >= 0 { reward = big.NewInt(280e+16) + // PolarisBlock 2.80 } - // MahasimBlock if headerNumber.Cmp(big.NewInt(3_000_000)) >= 0 { reward = big.NewInt(230e+16) + // MahasimBlock 2.30 } return reward