x/bank: remove alias.go usage (#6439)

* x/bank: remove alias.go usage

* Fix simd_test.go
This commit is contained in:
dauTT
2020-06-14 23:06:16 +00:00
committed by GitHub
parent 8cf8098861
commit 24b9be0ef8
29 changed files with 110 additions and 183 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ import (
"github.com/cosmos/cosmos-sdk/tests/cli"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth"
"github.com/cosmos/cosmos-sdk/x/bank"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
)
func TestCLISimdCollectGentxs(t *testing.T) {
@@ -103,7 +103,7 @@ func TestCLISimdAddGenesisAccount(t *testing.T) {
appCodec := std.NewAppCodec(f.Cdc, interfaceRegistry)
accounts := auth.GetGenesisStateFromAppState(appCodec, genesisState).Accounts
balances := bank.GetGenesisStateFromAppState(f.Cdc, genesisState).Balances
balances := banktypes.GetGenesisStateFromAppState(f.Cdc, genesisState).Balances
balancesSet := make(map[string]sdk.Coins)
for _, b := range balances {