diff --git a/cmd/feather-core/cmd/config.go b/cmd/feather-core/cmd/config.go index 2d9fb0f..f482510 100644 --- a/cmd/feather-core/cmd/config.go +++ b/cmd/feather-core/cmd/config.go @@ -13,4 +13,9 @@ func initSDKConfig() { config.SetBech32PrefixForValidator(app.ValidatorAddressPrefix, app.ValidatorPubKeyPrefix) config.SetBech32PrefixForConsensusNode(app.ConsensusNodeAddressPrefix, app.ConsensusNodePubKeyPrefix) config.Seal() + + // Set other sdk overrides + + // change the default denomination in genesis + sdk.DefaultBondDenom = app.BondDenom }