0g-chain/x/hard/simulation/params.go
2020-12-21 18:18:55 +01:00

14 lines
294 B
Go

package simulation
import (
"math/rand"
"github.com/cosmos/cosmos-sdk/x/simulation"
)
// ParamChanges defines the parameters that can be modified by param change proposals
// on the simulation
func ParamChanges(r *rand.Rand) []simulation.ParamChange {
return []simulation.ParamChange{}
}