You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* (simulation) [#17911](https://github.com/cosmos/cosmos-sdk/pull/17911) Fix all problems with executing command `make test-sim-custom-genesis-fast` for simulation test.
66
67
* (baseapp) [#20346](https://github.com/cosmos/cosmos-sdk/pull/20346) Correctly assign `execModeSimulate` to context for `simulateTx`.
67
68
* (baseapp) [#20144](https://github.com/cosmos/cosmos-sdk/pull/20144) Remove txs from mempool when AnteHandler fails in recheck.
Copy file name to clipboardExpand all lines: types/context.go
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,7 @@ type Context struct {
54
54
blockGasMeter storetypes.GasMeter
55
55
checkTxbool
56
56
recheckTxbool// if recheckTx == true, then checkTx must also be true
57
+
sigverifyTxbool// when run simulation, because the private key corresponding to the account in the genesis.json randomly generated, we must skip the sigverify.
0 commit comments