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
Not sure about effect of previous one, but if we don't have defined mempool we lose ABCI++ new functions (PrepareProposal + ProcessProposal) as they just skipped.
Also Cosmos SDK have helper function to build all default options, so why not use it, then constructor call look like this
Currently in app template application created with this call:
cli/ignite/templates/app/files/cmd/{{binaryNamePrefix}}d/cmd/root.go.plush
Lines 277 to 299 in aff951c
But even in Cosmos SDK v0.46.x there is one more flag available that missing in app constructor:
In next Cosmos SDK v0.47.x was added another one option that also missing
Not sure about effect of previous one, but if we don't have defined mempool we lose ABCI++ new functions (PrepareProposal + ProcessProposal) as they just skipped.
Also Cosmos SDK have helper function to build all default options, so why not use it, then constructor call look like this
This allow remove huge part of default options initialization and make function much more compact, also all missed options already defined inside!
The text was updated successfully, but these errors were encountered: