cosmos-sdk/x/auth/keeper/integration_test.go

19 lines
538 B
Go
Raw Normal View History

2019-08-15 08:19:16 -07:00
package keeper_test
import (
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
2019-08-15 08:19:16 -07:00
"github.com/cosmos/cosmos-sdk/simapp"
sdk "github.com/cosmos/cosmos-sdk/types"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
)
// returns context and app with params set on account keeper
func createTestApp(isCheckTx bool) (*simapp.SimApp, sdk.Context) {
app := simapp.Setup(isCheckTx)
ctx := app.BaseApp.NewContext(isCheckTx, tmproto.Header{})
2019-08-15 08:19:16 -07:00
app.AccountKeeper.SetParams(ctx, authtypes.DefaultParams())
return app, ctx
}