feat(server): in-place testnet creator (#19280)

This commit is contained in:
Adam Tucker
2024-02-12 10:53:07 +00:00
committed by GitHub
parent cfc3739033
commit 89df28ceb9
4 changed files with 405 additions and 51 deletions
+5
View File
@@ -107,6 +107,11 @@ func SetChainID(chainID string) func(*BaseApp) {
return func(app *BaseApp) { app.chainID = chainID }
}
// SetStoreLoader allows customization of the rootMultiStore initialization.
func SetStoreLoader(loader StoreLoader) func(*BaseApp) {
return func(app *BaseApp) { app.SetStoreLoader(loader) }
}
// SetOptimisticExecution enables optimistic execution.
func SetOptimisticExecution(opts ...func(*oe.OptimisticExecution)) func(*BaseApp) {
return func(app *BaseApp) {