-
Notifications
You must be signed in to change notification settings - Fork 206
/
params.go
64 lines (50 loc) · 1.28 KB
/
params.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package types
import (
fmt "fmt"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
"gopkg.in/yaml.v2"
)
var (
KeyMaxCU = []byte("MaxCU")
DefaultMaxCU uint64 = 10000
)
var _ paramtypes.ParamSet = (*Params)(nil)
// ParamKeyTable the param key table for launch module
func ParamKeyTable() paramtypes.KeyTable {
return paramtypes.NewKeyTable().RegisterParamSet(&Params{})
}
// NewParams creates a new Params instance
func NewParams(maxCU uint64) Params {
return Params{MaxCU: maxCU}
}
// DefaultParams returns a default set of parameters
func DefaultParams() Params {
return NewParams(DefaultMaxCU)
}
// ParamSetPairs get the params.ParamSet
func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs {
return paramtypes.ParamSetPairs{
paramtypes.NewParamSetPair(KeyMaxCU, &p.MaxCU, validateMaxCU),
}
}
// Validate validates the set of params
func (p Params) Validate() error {
if err := validateMaxCU(p.MaxCU); err != nil {
return err
}
return nil
}
// String implements the Stringer interface.
func (p Params) String() string {
out, _ := yaml.Marshal(p)
return string(out)
}
func validateMaxCU(v interface{}) error {
maxCU, ok := v.(uint64)
if !ok {
return fmt.Errorf("invalid parameter type: %T", v)
}
// TODO implement validation
_ = maxCU
return nil
}