Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianToledano committed Apr 4, 2024
1 parent 47a9be9 commit a0b1ce7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion x/bank/keeper/grpc_query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package keeper_test
import (
gocontext "context"
"fmt"
codectestutil "github.com/cosmos/cosmos-sdk/codec/testutil"
"time"

"cosmossdk.io/core/header"
Expand All @@ -12,6 +11,7 @@ import (
"cosmossdk.io/x/bank/testutil"
"cosmossdk.io/x/bank/types"

codectestutil "github.com/cosmos/cosmos-sdk/codec/testutil"
"github.com/cosmos/cosmos-sdk/testutil/testdata"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/query"
Expand Down
2 changes: 1 addition & 1 deletion x/bank/types/msgs_test.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package types

import (
"github.com/cosmos/cosmos-sdk/codec/testutil"
"testing"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/codec/testutil"
"github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)
Expand Down
2 changes: 1 addition & 1 deletion x/bank/types/querier.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const (
)

// NewQueryBalanceRequest creates a new instance of QueryBalanceRequest.
func NewQueryBalanceRequest(addr string, denom string) *QueryBalanceRequest {
func NewQueryBalanceRequest(addr, denom string) *QueryBalanceRequest {
return &QueryBalanceRequest{Address: addr, Denom: denom}
}

Expand Down
1 change: 1 addition & 0 deletions x/bank/types/send_authorization.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package types

import (
context "context"

"cosmossdk.io/core/address"

sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down
4 changes: 2 additions & 2 deletions x/bank/types/send_authorization_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package types_test

import (
fmt "fmt"
codectestutil "github.com/cosmos/cosmos-sdk/codec/testutil"
"fmt"
"testing"

"github.com/stretchr/testify/require"
Expand All @@ -12,6 +11,7 @@ import (
storetypes "cosmossdk.io/store/types"
"cosmossdk.io/x/bank/types"

codectestutil "github.com/cosmos/cosmos-sdk/codec/testutil"
"github.com/cosmos/cosmos-sdk/testutil"
sdk "github.com/cosmos/cosmos-sdk/types"
)
Expand Down

0 comments on commit a0b1ce7

Please sign in to comment.