Skip to content

Commit

Permalink
make format
Browse files Browse the repository at this point in the history
  • Loading branch information
NeverHappened committed Oct 14, 2024
1 parent c04def7 commit cfd2e5f
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 9 deletions.
3 changes: 2 additions & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
feemarkettypes "github.com/skip-mev/feemarket/x/feemarket/types"

"github.com/neutron-org/neutron/v5/x/dynamicfees"
"github.com/neutron-org/neutron/v5/x/ibc-rate-limit"
ibcratelimit "github.com/neutron-org/neutron/v5/x/ibc-rate-limit"

"cosmossdk.io/client/v2/autocli"
"cosmossdk.io/core/appmodule"
Expand Down Expand Up @@ -135,6 +135,7 @@ import (

ibcratelimitkeeper "github.com/neutron-org/neutron/v5/x/ibc-rate-limit/keeper"
ibcratelimittypes "github.com/neutron-org/neutron/v5/x/ibc-rate-limit/types"

//nolint:staticcheck
ibcporttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types"
ibchost "github.com/cosmos/ibc-go/v8/modules/core/exported"
Expand Down
3 changes: 2 additions & 1 deletion app/proposals_allowlisting.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ import (
ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"
ibcclienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck
ccvconsumertypes "github.com/cosmos/interchain-security/v5/x/ccv/consumer/types"
ibcratelimittypes "github.com/neutron-org/neutron/v5/x/ibc-rate-limit/types"
feemarkettypes "github.com/skip-mev/feemarket/x/feemarket/types"
marketmaptypes "github.com/skip-mev/slinky/x/marketmap/types"

ibcratelimittypes "github.com/neutron-org/neutron/v5/x/ibc-rate-limit/types"

dynamicfeestypes "github.com/neutron-org/neutron/v5/x/dynamicfees/types"
globalfeetypes "github.com/neutron-org/neutron/v5/x/globalfee/types"

Expand Down
5 changes: 3 additions & 2 deletions app/upgrades/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ import (
slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper"
capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper"
ccvconsumerkeeper "github.com/cosmos/interchain-security/v5/x/ccv/consumer/keeper"
dexkeeper "github.com/neutron-org/neutron/v5/x/dex/keeper"
ibcratelimitkeeper "github.com/neutron-org/neutron/v5/x/ibc-rate-limit/keeper"
auctionkeeper "github.com/skip-mev/block-sdk/v2/x/auction/keeper"
feemarketkeeper "github.com/skip-mev/feemarket/x/feemarket/keeper"
marketmapkeeper "github.com/skip-mev/slinky/x/marketmap/keeper"

dexkeeper "github.com/neutron-org/neutron/v5/x/dex/keeper"
ibcratelimitkeeper "github.com/neutron-org/neutron/v5/x/ibc-rate-limit/keeper"

dynamicfeeskeeper "github.com/neutron-org/neutron/v5/x/dynamicfees/keeper"

contractmanagerkeeper "github.com/neutron-org/neutron/v5/x/contractmanager/keeper"
Expand Down
3 changes: 2 additions & 1 deletion x/ibc-rate-limit/client/cli/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ import (

"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/neutron-org/neutron/v5/x/ibc-rate-limit/types"
"github.com/spf13/cobra"

"github.com/neutron-org/neutron/v5/x/ibc-rate-limit/types"
)

// GetQueryCmd returns the cli query commands for this module
Expand Down
3 changes: 2 additions & 1 deletion x/ibc-rate-limit/genesis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ import (
"testing"

sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/neutron-org/neutron/v5/x/ibc-rate-limit/types"
"github.com/stretchr/testify/suite"

"github.com/neutron-org/neutron/v5/x/ibc-rate-limit/types"

"github.com/neutron-org/neutron/v5/testutil/apptesting"
)

Expand Down
3 changes: 2 additions & 1 deletion x/ibc-rate-limit/ibc_middleware_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ import (
sdkmath "cosmossdk.io/math"
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types"
"github.com/neutron-org/neutron/v5/testutil"
"github.com/stretchr/testify/require"
"golang.org/x/exp/slices"

"github.com/neutron-org/neutron/v5/testutil"

bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"

abci "github.com/cometbft/cometbft/abci/types"
Expand Down
3 changes: 2 additions & 1 deletion x/ibc-rate-limit/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
"fmt"

"github.com/grpc-ecosystem/grpc-gateway/runtime"
"github.com/neutron-org/neutron/v5/x/ibc-rate-limit/keeper"
"github.com/spf13/cobra"

"github.com/neutron-org/neutron/v5/x/ibc-rate-limit/keeper"

codectypes "github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
Expand Down
1 change: 1 addition & 0 deletions x/ibc-rate-limit/module_simulation.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"github.com/cosmos/cosmos-sdk/types/module"
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
"github.com/cosmos/cosmos-sdk/x/simulation"

"github.com/neutron-org/neutron/v5/testutil/common/sample"
ibcratelimitsimulation "github.com/neutron-org/neutron/v5/x/ibc-rate-limit/simulation"
"github.com/neutron-org/neutron/v5/x/ibc-rate-limit/types"
Expand Down
3 changes: 2 additions & 1 deletion x/tokenfactory/keeper/grpc_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ package keeper

import (
"context"
"cosmossdk.io/errors"
"fmt"

"cosmossdk.io/errors"

sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/neutron-org/neutron/v5/x/tokenfactory/types"
Expand Down

0 comments on commit cfd2e5f

Please sign in to comment.