feat!: Define Genesis state transition (#15999)

This commit is contained in:
Marko
2023-05-03 08:58:58 +00:00
committed by GitHub
parent 672b1f9e15
commit d31f2964b0
14 changed files with 79 additions and 44 deletions
+2 -2
View File
@@ -305,13 +305,13 @@ func TestDeliverGenTxs(t *testing.T) {
if tc.expPass {
require.NotPanics(t, func() {
genutil.DeliverGenTxs(
f.ctx, genTxs, f.stakingKeeper, f.baseApp.DeliverTx,
f.ctx, genTxs, f.stakingKeeper, f.baseApp,
f.encodingConfig.TxConfig,
)
})
} else {
_, err := genutil.DeliverGenTxs(
f.ctx, genTxs, f.stakingKeeper, f.baseApp.DeliverTx,
f.ctx, genTxs, f.stakingKeeper, f.baseApp,
f.encodingConfig.TxConfig,
)