21 lines
577 B
Go
21 lines
577 B
Go
package keeper_test
|
|
|
|
import (
|
|
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/simapp"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/mint/types"
|
|
)
|
|
|
|
// returns context and an app with updated mint keeper
|
|
func createTestApp(isCheckTx bool) (*simapp.SimApp, sdk.Context) {
|
|
app := simapp.Setup(isCheckTx)
|
|
|
|
ctx := app.BaseApp.NewContext(isCheckTx, tmproto.Header{})
|
|
app.MintKeeper.SetParams(ctx, types.DefaultParams())
|
|
app.MintKeeper.SetMinter(ctx, types.DefaultInitialMinter())
|
|
|
|
return app, ctx
|
|
}
|