From 98cda9f7c1fda3247b8ac336ff5eb680f2ed7603 Mon Sep 17 00:00:00 2001 From: Faisal Naveed Date: Fri, 11 Nov 2022 22:38:23 +0500 Subject: [PATCH] fixed bedrock distrubution --- app/upgrades/v4/upgrades.go | 29 ++++++++++------------------- 1 file changed, 10 insertions(+), 19 deletions(-) diff --git a/app/upgrades/v4/upgrades.go b/app/upgrades/v4/upgrades.go index b8a7e72553..0cdc18e36b 100644 --- a/app/upgrades/v4/upgrades.go +++ b/app/upgrades/v4/upgrades.go @@ -50,28 +50,19 @@ var ( EngineHotWal, } - TotalUbedrock = math.NewIntFromUint64(1e+15) // 1 bedrock = 1_000_000 ubedrock - - // UbedrockDistribute = map[string]math.Int{ - // Accounts[0]: math.NewIntFromUint64(150_000_000_000_000), - // Accounts[1]: math.NewIntFromUint64(150_000_000_000_000), - // Accounts[2]: math.ZeroInt(), - // Accounts[3]: math.NewIntFromUint64(20_000_000_000_000), - // Accounts[4]: math.NewIntFromUint64(40_000_000_000_000), - // Accounts[5]: math.NewIntFromUint64(20_000_000_000_000), - // Accounts[6]: math.NewIntFromUint64(619_999_000_000_000), - // Accounts[7]: math.NewIntFromUint64(1_000_000_000), - // } + TotalUbedrock = math.NewIntFromUint64(1_000_000_000_000_000) // 1 bedrock = 1_000_000 ubedrock + UbedrockDistribute = map[string]math.Int{ - Accounts[0]: math.NewIntFromUint64(1_000_000_000_000_00), - Accounts[1]: math.NewIntFromUint64(1_000_000_000_000_00), + Accounts[0]: math.NewIntFromUint64(150_000_000_000_000), + Accounts[1]: math.NewIntFromUint64(150_000_000_000_000), Accounts[2]: math.ZeroInt(), - Accounts[3]: math.NewIntFromUint64(1_000_000_000_000_00), - Accounts[4]: math.NewIntFromUint64(1_000_000_000_000_00), - Accounts[5]: math.NewIntFromUint64(1_000_000_000_000_00), - Accounts[6]: math.NewIntFromUint64(1_000_000_000_000_00), - Accounts[7]: math.NewIntFromUint64(1_000_000_000_000_00), + Accounts[3]: math.NewIntFromUint64(20_000_000_000_000), + Accounts[4]: math.NewIntFromUint64(40_000_000_000_000), + Accounts[5]: math.NewIntFromUint64(20_000_000_000_000), + Accounts[6]: math.NewIntFromUint64(619_999_000_000_000), + Accounts[7]: math.NewIntFromUint64(1_000_000_000), } + _ = Accounts _ = TotalUbedrock _ = UbedrockDistribute