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
Currently the function type signature is: func (app *App) CompleteSetup(t *testing.T, newKeys []*sdk.KVStoreKey)
I propose changing this to func (app *App) CompleteSetup(newKeys []*sdk.KVStoreKey) Error.
The reason for changing this is that we can then use mock apps for benchmarking.
The text was updated successfully, but these errors were encountered:
Currently the function type signature is:
func (app *App) CompleteSetup(t *testing.T, newKeys []*sdk.KVStoreKey)
I propose changing this to
func (app *App) CompleteSetup(newKeys []*sdk.KVStoreKey) Error
.The reason for changing this is that we can then use mock apps for benchmarking.
The text was updated successfully, but these errors were encountered: