Skip to content

Commit

Permalink
Reorder package
Browse files Browse the repository at this point in the history
  • Loading branch information
ulbqb committed Jan 27, 2024
1 parent 11088b9 commit 98018f1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion x/stakingplus/authz.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package stakingplus

import (
"github.com/Finschia/finschia-sdk/x/foundation"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"

"github.com/Finschia/finschia-sdk/x/foundation"
)

var _ foundation.Authorization = (*CreateValidatorAuthorization)(nil)
Expand Down
1 change: 1 addition & 0 deletions x/stakingplus/keeper/keeper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import (
"cosmossdk.io/depinject"
"cosmossdk.io/log"
"cosmossdk.io/math"

"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
"github.com/cosmos/cosmos-sdk/runtime"
simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
Expand Down
1 change: 1 addition & 0 deletions x/stakingplus/keeper/msg_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package keeper_test

import (
"cosmossdk.io/math"

simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
sdk "github.com/cosmos/cosmos-sdk/types"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
Expand Down
5 changes: 3 additions & 2 deletions x/stakingplus/module/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ import (
"encoding/json"
"fmt"

abci "github.com/cometbft/cometbft/abci/types"

modulev1 "cosmossdk.io/api/cosmos/staking/module/v1"
"cosmossdk.io/core/appmodule"
"cosmossdk.io/core/store"
"cosmossdk.io/depinject"
abci "github.com/cometbft/cometbft/abci/types"

modulev1 "cosmossdk.io/api/cosmos/staking/module/v1"
"github.com/cosmos/cosmos-sdk/codec"
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
"github.com/cosmos/cosmos-sdk/runtime"
Expand Down

0 comments on commit 98018f1

Please sign in to comment.