20 lines
481 B
Go
20 lines
481 B
Go
package keeper_test
|
|
|
|
import (
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/simapp"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/auth"
|
|
)
|
|
|
|
func createTestApp(isCheckTx bool) (*simapp.SimApp, sdk.Context) {
|
|
app := simapp.Setup(isCheckTx)
|
|
ctx := app.BaseApp.NewContext(isCheckTx, abci.Header{})
|
|
|
|
app.AccountKeeper.SetParams(ctx, auth.DefaultParams())
|
|
app.BankKeeper.SetSendEnabled(ctx, true)
|
|
|
|
return app, ctx
|
|
}
|