Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt committed Dec 9, 2024
1 parent ee4f817 commit dd66daa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions store/db/prefixdb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ package db_test
import (
"testing"

"cosmossdk.io/store/db"
"cosmossdk.io/store/mock"
"github.com/stretchr/testify/require"
"go.uber.org/mock/gomock"

"cosmossdk.io/store/db"
"cosmossdk.io/store/mock"
)

func TestPrefixDB(t *testing.T) {
Expand Down
1 change: 0 additions & 1 deletion tests/integration/v2/distribution/fixture_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,5 +156,4 @@ func (s *fixture) registerMsgRouterService(router *integration.RouterService) {

func (s *fixture) registerQueryRouterService(router *integration.RouterService) {
// register custom router service

}
2 changes: 1 addition & 1 deletion x/genutil/v2/cli/export.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func ExportCmd(app ExportableApp) *cobra.Command {
cmd.Flags().
String(flags.FlagOutputDocument, "", "Exported state is written to the given file instead of STDOUT")
cmd.Flags().Bool(flagForZeroHeight, false, "Export state to start at height zero. Equivalent to --height=0")
cmd.Flags().MarkDeprecated(flagForZeroHeight, "use --height=0 instead")
_ = cmd.Flags().MarkDeprecated(flagForZeroHeight, "use --height=0 instead")

return cmd
}

0 comments on commit dd66daa

Please sign in to comment.