Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(auth): use collections for GlobalAccountNumber #15830

Merged
merged 14 commits into from
Apr 17, 2023
Prev Previous commit
Next Next commit
address pr comments3
  • Loading branch information
testinginprod committed Apr 17, 2023
commit 2951a36d62591d3436e7253c625fc49c0834842e
2 changes: 1 addition & 1 deletion x/auth/keeper/migrations.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package keeper

import (
v5 "github.com/cosmos/cosmos-sdk/x/auth/migrations/v5"
"github.com/cosmos/gogoproto/grpc"

sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth/exported"
v2 "github.com/cosmos/cosmos-sdk/x/auth/migrations/v2"
v3 "github.com/cosmos/cosmos-sdk/x/auth/migrations/v3"
v4 "github.com/cosmos/cosmos-sdk/x/auth/migrations/v4"
v5 "github.com/cosmos/cosmos-sdk/x/auth/migrations/v5"
"github.com/cosmos/cosmos-sdk/x/auth/types"
)

Expand Down