-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tests/sims support for runtime/v2 #20469
Comments
The dependency to // AppEntrypoint defines the method for delivering simulation TX to the app. This is implemented by *Baseapp
type AppEntrypoint interface {
SimDeliver(_txEncoder sdk.TxEncoder, tx sdk.Tx) (sdk.GasInfo, *sdk.Result, error)
} This would be a breaking change though. My work in sims2 branch prepares for this already although I did not modify the Ops for compatibilty. |
Currently blocked on #21907 |
unblocked now woooo!! |
simulation.SimulateFromSeed expects a
BaseApp
. Is it possible for this function to accept an abstraction which both BaseApp and something from runtime/v2 satisfy?The text was updated successfully, but these errors were encountered: