From 0cee8c8861e37bd5227e514dd0e0867049415b2e Mon Sep 17 00:00:00 2001 From: yuriy0803 <68668177+yuriy0803@users.noreply.github.com> Date: Fri, 9 Jun 2023 12:14:49 +0200 Subject: [PATCH] Expanse improvement --- payouts/unlocker.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/payouts/unlocker.go b/payouts/unlocker.go index 9e526b5..3793edb 100644 --- a/payouts/unlocker.go +++ b/payouts/unlocker.go @@ -741,9 +741,9 @@ func getUncleReward(uHeight *big.Int, height *big.Int, era *big.Int, reward *big // expanse func getConstRewardExpanse(height int64) *big.Int { if height >= byzantiumHardForkHeight { - return new(big.Int).Set(homesteadExpanseReward) + return new(big.Int).Set(byzantiumExpanseReward) } - return new(big.Int).Set(byzantiumExpanseReward) + return new(big.Int).Set(homesteadExpanseReward) } func getConstRewardEthereumpow(height int64) *big.Int {