Skip to content

Commit

Permalink
Fix testnet denom name in balances in genesis
Browse files Browse the repository at this point in the history
  • Loading branch information
ysv committed Jan 17, 2023
1 parent 12748df commit 57ea02f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/config/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ func init() {
// 500M = 4 * (124_950_000 + 50_000)
// where 124_950_000 is a balance of each of 4 initial foundation wallets.
// where 50_000 is balances of each of 4 initial validator stakers.
testFoundationInitialBalance := sdk.NewCoins(sdk.NewCoin(constant.DenomDev, sdk.NewInt(124_950_000_000_000)))
testStakerValidatorBalance := sdk.NewCoins(sdk.NewCoin(constant.DenomDev, sdk.NewInt(50_000_000_000)))
testFoundationInitialBalance := sdk.NewCoins(sdk.NewCoin(constant.DenomTest, sdk.NewInt(124_950_000_000_000)))
testStakerValidatorBalance := sdk.NewCoins(sdk.NewCoin(constant.DenomTest, sdk.NewInt(50_000_000_000)))

devGovConfig := govConfig
devGovConfig.ProposalConfig.VotingPeriod = "24h"
Expand Down

0 comments on commit 57ea02f

Please sign in to comment.