Skip to content

Commit

Permalink
Linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrit committed Jul 19, 2024
1 parent 2ae1712 commit 8bf47d2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion x/auction/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func (AppModule) GenerateGenesisState(simState *module.SimulationState) {

// ProposalContents returns all the distribution content functions used to
// simulate governance proposals.
func (am AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedProposalContent {
func (am AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedProposalMsg {
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion x/axelarcork/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ func (AppModule) GenerateGenesisState(simState *module.SimulationState) {

// ProposalContents returns all the cork content functions used to
// simulate governance proposals.
func (am AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedProposalContent {
func (am AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedProposalMsg {
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion x/cellarfees/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func (AppModule) GenerateGenesisState(simState *module.SimulationState) {}

// ProposalContents returns all the cellarfees content functions used to
// simulate governance proposals.
func (am AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedProposalContent {
func (am AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedProposalMsg {
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion x/cork/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ func (AppModule) GenerateGenesisState(simState *module.SimulationState) {

// ProposalContents returns all the cork content functions used to
// simulate governance proposals.
func (am AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedProposalContent {
func (am AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedProposalMsg {
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion x/incentives/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func (AppModule) GenerateGenesisState(simState *module.SimulationState) {

// ProposalContents returns all the distribution content functions used to
// simulate governance proposals.
func (am AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedProposalContent {
func (am AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedProposalMsg {
return nil
}

Expand Down
2 changes: 1 addition & 1 deletion x/pubsub/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func (AppModule) GenerateGenesisState(simState *module.SimulationState) {}

// ProposalContents returns all the content functions used to
// simulate governance proposals.
func (am AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedProposalContent {
func (am AppModule) ProposalContents(_ module.SimulationState) []sim.WeightedProposalMsg {
return nil
}

Expand Down

0 comments on commit 8bf47d2

Please sign in to comment.