Skip to content

Commit

Permalink
reverted x/params changes
Browse files Browse the repository at this point in the history
  • Loading branch information
deepan95dev committed Dec 1, 2023
1 parent b5c92c6 commit 2509135
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 90 deletions.
7 changes: 4 additions & 3 deletions x/scheduler/types/params.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package types

import (
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
"gopkg.in/yaml.v2"
)

var _ ParamSet = (*Params)(nil)
var _ paramtypes.ParamSet = (*Params)(nil)

// ParamKeyTable the param key table for launch module

Expand All @@ -19,8 +20,8 @@ func DefaultParams() Params {
}

// ParamSetPairs get the params.ParamSet
func (p *Params) ParamSetPairs() ParamSetPairs {
return ParamSetPairs{}
func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs {
return paramtypes.ParamSetPairs{}
}

// Validate validates the set of params
Expand Down
87 changes: 0 additions & 87 deletions x/scheduler/types/table.go

This file was deleted.

0 comments on commit 2509135

Please sign in to comment.