(t *testing.T, app *sifapp.SifchainApp, ctx sdk.Context, height int64)
| 439 | } |
| 440 | |
| 441 | func endBlock(t *testing.T, app *sifapp.SifchainApp, ctx sdk.Context, height int64) { |
| 442 | app.EndBlocker(ctx, abci.RequestEndBlock{Height: height}) |
| 443 | //app.Commit() |
| 444 | |
| 445 | // Check invariants |
| 446 | res, stop := app.ClpKeeper.BalanceModuleAccountCheck()(ctx) |
| 447 | require.False(t, stop, res) |
| 448 | } |
| 449 | |
| 450 | type TestResults struct { |
| 451 | Accounts map[string]sdk.Coins `json:"accounts"` |
no test coverage detected