Skip to content

Commit

Permalink
fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonberg1997 committed Jan 5, 2023
1 parent 6d9923c commit 4ef785c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/gashub/simulation/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ import (
)

const (
keyFixedMsgGas = "FixedMsgGas"
keyMsgSendGas = "MsgSendGas"
)

// ParamChanges defines the parameters that can be modified by param change proposals
// on the simulation
func ParamChanges(r *rand.Rand) []simtypes.ParamChange {
return []simtypes.ParamChange{
simulation.NewSimParamChange(types.ModuleName, keyFixedMsgGas,
simulation.NewSimParamChange(types.ModuleName, keyMsgSendGas,
func(r *rand.Rand) string {
return fmt.Sprintf("%d", GenMsgGas(r))
},
Expand Down

0 comments on commit 4ef785c

Please sign in to comment.