Skip to content

Commit

Permalink
Attempt to reorder imports to satisgy GolangCI
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronc committed Feb 24, 2020
1 parent eaf71f3 commit 6feb7ed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion x/upgrade/client/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package cli
import (
"bufio"
"fmt"
"github.com/cosmos/cosmos-sdk/x/upgrade/types"
"time"

authclient "github.com/cosmos/cosmos-sdk/x/auth/client"
Expand All @@ -16,6 +15,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth"
"github.com/cosmos/cosmos-sdk/x/gov"
"github.com/cosmos/cosmos-sdk/x/upgrade/types"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion x/upgrade/client/rest/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ package rest
import (
"encoding/binary"
"fmt"
"github.com/cosmos/cosmos-sdk/x/upgrade/types"
"net/http"

"github.com/gorilla/mux"

"github.com/cosmos/cosmos-sdk/client/context"
"github.com/cosmos/cosmos-sdk/types/rest"
"github.com/cosmos/cosmos-sdk/x/upgrade/types"
)

// RegisterRoutes registers REST routes for the upgrade module under the path specified by routeName.
Expand Down
2 changes: 1 addition & 1 deletion x/upgrade/client/rest/tx.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package rest

import (
"github.com/cosmos/cosmos-sdk/x/upgrade/types"
"net/http"
"time"

Expand All @@ -14,6 +13,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/rest"
"github.com/cosmos/cosmos-sdk/x/gov"
"github.com/cosmos/cosmos-sdk/x/upgrade/types"
)

func registerTxRoutes(cliCtx context.CLIContext, r *mux.Router) {
Expand Down

0 comments on commit 6feb7ed

Please sign in to comment.