Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

params updated according to testnet #908

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/upgrades/testnet/v15/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ func CreateUpgradeHandler(
consumerGenesis.Params.SoftOptOutThreshold = "0.05"
consumerGenesis.Params.RewardDenoms = []string{"ucmdx"}
consumerGenesis.Params.Enabled = true
consumerGenesis.Params.ProviderFeePoolAddrStr = "" // replace with provider address
consumerGenesis.Params.ConsumerRedistributionFraction = "0.70"
consumerGenesis.Params.ProviderFeePoolAddrStr = "cosmos1ap0mh6xzfn8943urr84q6ae7zfnar48am2erhd"
consumerGenesis.Params.ConsumerRedistributionFraction = "0.85"
consumerKeeper.InitGenesis(ctx, &consumerGenesis)
consumerKeeper.SetDistributionTransmissionChannel(ctx, "channel-2") // replace with correct channel
consumerKeeper.SetDistributionTransmissionChannel(ctx, "channel-25")

return fromVM, nil
}
Expand Down
Loading