From 853e4d3480cef0ac057e426e33087a9784bd641b Mon Sep 17 00:00:00 2001 From: Cosmic Vagabond <121588426+cosmic-vagabond@users.noreply.github.com> Date: Wed, 23 Oct 2024 16:52:00 +0200 Subject: [PATCH] fix: fee pool values (#47) --- utils/update-genesis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/update-genesis.go b/utils/update-genesis.go index 434f00a..8daf151 100644 --- a/utils/update-genesis.go +++ b/utils/update-genesis.go @@ -85,7 +85,7 @@ func UpdateGenesis(validatorBalance, homePath, genesisFilePath string) { genesis.AppState.Distribution = genesisInit.AppState.Distribution // temporary fix for distribution params - genesis.AppState.Distribution.FeePool.CommunityPool = sdk.NewDecCoins(sdk.NewDecCoin("ueden", sdk.NewInt(182175240208)), sdk.NewDecCoin("uedenb", sdk.NewInt(607246280442))) + genesis.AppState.Distribution.FeePool.CommunityPool = sdk.NewDecCoins(sdk.NewDecCoin("ueden", sdk.NewInt(378775488266)), sdk.NewDecCoin("uedenb", sdk.NewInt(1262580606262))) log.Printf("community pool: %v", genesis.AppState.Distribution.FeePool.CommunityPool)