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
The ConversionFeeDenom is missing in the GetParams() method of the msgfees module.
Currently:
// GetParams returns the total set of distribution parameters.
func (k Keeper) GetParams(ctx sdk.Context) (params types.Params) {
return types.Params{
FloorGasPrice: k.GetFloorGasPrice(ctx),
NhashPerUsdMil: k.GetNhashPerUsdMil(ctx),
}
}
Required:
// GetParams returns the total set of distribution parameters.
func (k Keeper) GetParams(ctx sdk.Context) (params types.Params) {
return types.Params{
FloorGasPrice: k.GetFloorGasPrice(ctx),
NhashPerUsdMil: k.GetNhashPerUsdMil(ctx),
ConversionFeeDenom: k.GetConversionFeeDenom(ctx),
}
}
Version
Steps to Reproduce
For Admin Use
Not duplicate issue
Appropriate labels applied
Appropriate contributors tagged
Contributor assigned/self-assigned
The text was updated successfully, but these errors were encountered:
Summary of Bug
The ConversionFeeDenom is missing in the GetParams() method of the
msgfees
module.Currently:
Required:
Version
Steps to Reproduce
For Admin Use
The text was updated successfully, but these errors were encountered: