We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96ad38f commit 578b346Copy full SHA for 578b346
x/feemarket/keeper/params.go
@@ -13,7 +13,7 @@ func (k Keeper) GetParams(ctx sdk.Context) (params types.Params) {
13
store := ctx.KVStore(k.storeKey)
14
bz := store.Get(types.ParamsKey)
15
if bz == nil {
16
- return params
+ return types.DefaultParams()
17
}
18
k.cdc.MustUnmarshal(bz, ¶ms)
19
return params
0 commit comments