(ctx sdk.Context)
| 174 | } |
| 175 | |
| 176 | func (k *keeper) GetParams(ctx sdk.Context) (bmetypes.Params, error) { |
| 177 | return k.Params.Get(ctx) |
| 178 | } |
| 179 | |
| 180 | func (k *keeper) SetParams(ctx sdk.Context, params bmetypes.Params) error { |
| 181 | return k.Params.Set(ctx, params) |
no test coverage detected