Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jgimeno committed Jul 5, 2023
1 parent f15996e commit 3f5377c
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 5 deletions.
7 changes: 4 additions & 3 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ package app
import (
"encoding/json"
"fmt"
"github.com/NibiruChain/nibiru/x/sudo/keeper"
"io"
"net/http"
"os"
"path/filepath"

"github.com/NibiruChain/nibiru/x/sudo/keeper"

sudotypes "github.com/NibiruChain/nibiru/x/sudo/types"

"github.com/CosmWasm/wasmd/x/wasm"
Expand Down Expand Up @@ -272,8 +273,8 @@ type NibiruApp struct {
SpotKeeper spotkeeper.Keeper
OracleKeeper oraclekeeper.Keeper
StablecoinKeeper stablecoinkeeper.Keeper
InflationKeeper inflationkeeper.Keeper
SudoKeeper keeper.Keeper
InflationKeeper inflationkeeper.Keeper
SudoKeeper keeper.Keeper

// WASM keepers
WasmKeeper wasm.Keeper
Expand Down
3 changes: 2 additions & 1 deletion app/keepers.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package app

import (
"github.com/NibiruChain/nibiru/x/sudo/keeper"
"path/filepath"

"github.com/NibiruChain/nibiru/x/sudo/keeper"

sudotypes "github.com/NibiruChain/nibiru/x/sudo/types"

_ "github.com/cosmos/cosmos-sdk/client/docs/statik"
Expand Down
1 change: 1 addition & 0 deletions x/sudo/keeper/querier.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package keeper

import (
"context"

"github.com/NibiruChain/nibiru/x/sudo/types"

sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down
1 change: 1 addition & 0 deletions x/sudo/keeper/sudo.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/NibiruChain/collections"

"github.com/NibiruChain/nibiru/x/common/set"
sudotypes "github.com/NibiruChain/nibiru/x/sudo/types"
)
Expand Down
3 changes: 2 additions & 1 deletion x/sudo/keeper/sudo_test.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package keeper_test

import (
"github.com/NibiruChain/nibiru/x/sudo/keeper"
"testing"
"time"

"github.com/NibiruChain/nibiru/x/sudo/keeper"

"github.com/NibiruChain/nibiru/x/sudo/types"

tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
Expand Down
1 change: 1 addition & 0 deletions x/sudo/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"context"
"encoding/json"
"fmt"

sudokeeper "github.com/NibiruChain/nibiru/x/sudo/keeper"

"github.com/NibiruChain/nibiru/x/sudo/types"
Expand Down
1 change: 1 addition & 0 deletions x/wasm/binding/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package binding

import (
"encoding/json"

"github.com/NibiruChain/nibiru/x/sudo/keeper"

sdkerrors "cosmossdk.io/errors"
Expand Down
1 change: 1 addition & 0 deletions x/wasm/binding/wasm.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package binding
import (
"github.com/CosmWasm/wasmd/x/wasm"
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"

"github.com/NibiruChain/nibiru/x/sudo/keeper"

oraclekeeper "github.com/NibiruChain/nibiru/x/oracle/keeper"
Expand Down

0 comments on commit 3f5377c

Please sign in to comment.