Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Shrenuj Bansal <shrenuj@dydx.exchange>
  • Loading branch information
shrenujb committed May 3, 2024
1 parent 76094e3 commit 084e201
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions protocol/cmd/dydxprotocold/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
"github.com/cosmos/cosmos-sdk/types/module"
authcmd "github.com/cosmos/cosmos-sdk/x/auth/client/cli"
authcodec "github.com/cosmos/cosmos-sdk/x/auth/codec"
"github.com/cosmos/cosmos-sdk/x/auth/types"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
"github.com/cosmos/cosmos-sdk/x/crisis"
genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
Expand All @@ -42,8 +42,6 @@ import (
"github.com/dydxprotocol/v4-chain/protocol/app/constants"
protocolflags "github.com/dydxprotocol/v4-chain/protocol/app/flags"

authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"

"github.com/spf13/cast"
"github.com/spf13/cobra"
"github.com/spf13/viper"
Expand Down Expand Up @@ -108,7 +106,7 @@ func NewRootCmdWithInterceptors(
WithTxConfig(tempApp.TxConfig()).
WithLegacyAmino(tempApp.LegacyAmino()).
WithInput(os.Stdin).
WithAccountRetriever(types.AccountRetriever{}).
WithAccountRetriever(authtypes.AccountRetriever{}).
WithBroadcastMode(flags.BroadcastSync).
WithHomeDir(homeDir).
WithViper(EnvPrefix)
Expand Down

0 comments on commit 084e201

Please sign in to comment.