From 8bf47d2cf031ad4416285c30eafcface58b4135a Mon Sep 17 00:00:00 2001 From: Collin Brittain Date: Fri, 19 Jul 2024 09:34:57 -0500 Subject: [PATCH] Linting fixes --- x/auction/module.go | 2 +- x/axelarcork/module.go | 2 +- x/cellarfees/module.go | 2 +- x/cork/module.go | 2 +- x/incentives/module.go | 2 +- x/pubsub/module.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/x/auction/module.go b/x/auction/module.go index 14114663..c189e197 100644 --- a/x/auction/module.go +++ b/x/auction/module.go @@ -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 } diff --git a/x/axelarcork/module.go b/x/axelarcork/module.go index 52fae168..f98a39cc 100644 --- a/x/axelarcork/module.go +++ b/x/axelarcork/module.go @@ -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 } diff --git a/x/cellarfees/module.go b/x/cellarfees/module.go index bc3c931d..7e35a42e 100644 --- a/x/cellarfees/module.go +++ b/x/cellarfees/module.go @@ -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 } diff --git a/x/cork/module.go b/x/cork/module.go index 7a78ac82..d31123b7 100644 --- a/x/cork/module.go +++ b/x/cork/module.go @@ -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 } diff --git a/x/incentives/module.go b/x/incentives/module.go index cd936b45..7a306555 100644 --- a/x/incentives/module.go +++ b/x/incentives/module.go @@ -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 } diff --git a/x/pubsub/module.go b/x/pubsub/module.go index 3b4120e2..6ff586d4 100644 --- a/x/pubsub/module.go +++ b/x/pubsub/module.go @@ -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 }