Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
javiersuweijie committed May 30, 2024
1 parent 67620cd commit f95fe95
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
6 changes: 4 additions & 2 deletions app/custom_queriers/custom_queriers.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ package custom_queriers
import (
"encoding/json"
"fmt"
"strings"

"github.com/CosmWasm/wasmd/x/wasm"
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
alliancebindings "github.com/terra-money/alliance/x/alliance/bindings"
alliancekeeper "github.com/terra-money/alliance/x/alliance/keeper"
tokenfactorybindings "github.com/terra-money/core/v2/x/tokenfactory/bindings"
tokenfactorykeeper "github.com/terra-money/core/v2/x/tokenfactory/keeper"
"strings"

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

sdk "github.com/cosmos/cosmos-sdk/types"
)
Expand Down
1 change: 0 additions & 1 deletion x/tokenfactory/bindings/wasm.go
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
package bindings

6 changes: 4 additions & 2 deletions x/tokenfactory/keeper/bankactions.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package keeper

import (
sdk "github.com/cosmos/cosmos-sdk/types"
"sort"

"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"sort"

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

errorsmod "cosmossdk.io/errors"
customterratypes "github.com/terra-money/core/v2/x/bank/types"
Expand Down
1 change: 1 addition & 0 deletions x/tokenfactory/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package keeper

import (
"fmt"

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

"github.com/cometbft/cometbft/libs/log"
Expand Down
3 changes: 2 additions & 1 deletion x/tokenfactory/keeper/msg_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ package keeper_test

import (
"fmt"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
"testing"

govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"

"github.com/stretchr/testify/suite"
"github.com/terra-money/core/v2/x/tokenfactory/types"

Expand Down

0 comments on commit f95fe95

Please sign in to comment.