Versions in this module Expand all Collapse all v0 v0.2.0 Nov 8, 2019 Changes in this version + func CheckBalance(t *testing.T, app *App, addr sdk.AccAddress, exp sdk.Tokens) + func CheckGenTx(t *testing.T, app *baseapp.BaseApp, msgs []sdk.Msg, accNums []uint64, ...) sdk.Result + func CreateGenAccounts(numAccs int, genTokens sdk.Tokens) (genAccs []auth.Account, addrs []sdk.AccAddress, pubKeys []crypto.PubKey, ...) + func GenSequenceOfTxs(msgs []sdk.Msg, accnums []uint64, initSeqNums []uint64, numToGenerate int, ...) []auth.StdTx + func GenTx(msgs []sdk.Msg, accnums []uint64, seq []uint64, priv ...crypto.PrivKey) auth.StdTx + func GeneratePrivKeyAddressPairs(n int) (keys []crypto.PrivKey, addrs []sdk.AccAddress) + func GeneratePrivKeyAddressPairsFromRand(rand *rand.Rand, n int) (keys []crypto.PrivKey, addrs []sdk.AccAddress) + func GeneratePrivKeys(n int) (keys []crypto.PrivKey) + func RandFromBigInterval(r *rand.Rand, intervals []BigInterval) sdk.Int + func RandomSetGenesis(r *rand.Rand, app *App, addrs []sdk.AccAddress, denoms []string) + func SetGenesis(app *App, accs []auth.Account) + func SignCheckDeliver(t *testing.T, cdc *codec.Codec, app *baseapp.BaseApp, header abci.Header, ...) sdk.Result + type AddrKeys struct + Address sdk.AccAddress + PrivKey crypto.PrivKey + PubKey crypto.PubKey + func NewAddrKeys(address sdk.AccAddress, pubKey crypto.PubKey, privKey crypto.PrivKey) AddrKeys + type AddrKeysSlice []AddrKeys + func (b AddrKeysSlice) Len() int + func (b AddrKeysSlice) Less(i, j int) bool + func (b AddrKeysSlice) Swap(i, j int) + type App struct + AccountKeeper auth.AccountKeeper + Cdc *codec.Codec + GenesisAccounts []auth.Account + KeyAccount *sdk.KVStoreKey + KeyMain *sdk.KVStoreKey + KeyParams *sdk.KVStoreKey + ParamsKeeper params.Keeper + TKeyParams *sdk.TransientStoreKey + TotalTokensSupply sdk.Tokens + func NewApp() *App + func (app *App) CompleteSetup(newKeys ...sdk.StoreKey) error + func (app *App) InitChainer(ctx sdk.Context, _ abci.RequestInitChain) abci.ResponseInitChain + type BigInterval struct