-
Notifications
You must be signed in to change notification settings - Fork 11
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
[Interchaintest] Installment # 2 #165
Conversation
app/app.go
Outdated
crisistypes.StoreKey, minttypes.StoreKey, distrtypes.StoreKey, slashingtypes.StoreKey, | ||
govtypes.StoreKey, consensusparamtypes.StoreKey, upgradetypes.StoreKey, | ||
feegrant.StoreKey, evidencetypes.StoreKey, circuittypes.StoreKey, group.StoreKey, | ||
govtypes.StoreKey, paramstypes.StoreKey, consensusparamtypes.StoreKey, upgradetypes.StoreKey, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think there is no need to add paramstypes.StoreKey
app/app.go
Outdated
capabilitytypes.StoreKey, ibcexported.StoreKey, ibctransfertypes.StoreKey, ibcfeetypes.StoreKey, | ||
wasmtypes.StoreKey, icahosttypes.StoreKey, | ||
icacontrollertypes.StoreKey, | ||
) | ||
|
||
tkeys := storetypes.NewTransientStoreKeys(paramstypes.TStoreKey) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Related to previous comment - If we don't need params module, we don't need transient store either
app/app.go
Outdated
@@ -825,6 +828,7 @@ func NewApp( | |||
|
|||
// initialize stores | |||
app.MountKVStores(keys) | |||
app.MountTransientStores(tkeys) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto
Does this PR close Issue #131 ? |
Yes |
Overview
This PR attempts to achieve the followings:
app.go
refactor & fixesSedaExponent
to 6 inapp/params/config.go
. This is because in interchaintest v8.0.0 the default only has hardcoded values now which were tailored toe6
.Testing
You should see the test passing.