From 32e77bccbf3ae322a91ed8c2ecf2d18ca36478d1 Mon Sep 17 00:00:00 2001 From: Jim Larson Date: Mon, 26 Jul 2021 21:03:33 -0700 Subject: [PATCH] fix: vesting test compile error --- x/auth/vesting/handler_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/auth/vesting/handler_test.go b/x/auth/vesting/handler_test.go index bfeb06721f8a..6be51e02ff6d 100644 --- a/x/auth/vesting/handler_test.go +++ b/x/auth/vesting/handler_test.go @@ -102,7 +102,7 @@ func (suite *HandlerTestSuite) TestMsgCreatePeriodicVestingAccount() { period := []types.Period{{Length: 5000, Amount: balances}} suite.app.AccountKeeper.SetAccount(ctx, acc1) - suite.Require().NoError(simapp.FundAccount(suite.app, ctx, addr1, balances)) + suite.Require().NoError(simapp.FundAccount(suite.app.BankKeeper, ctx, addr1, balances)) testCases := []struct { name string