We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df7422a commit a2469bcCopy full SHA for a2469bc
x/feemarket/types/msgs.go
@@ -16,7 +16,8 @@ func NewMsgParams(authority string, params Params) MsgParams {
16
17
// GetSigners implements GetSigners for the msg.
18
func (m *MsgParams) GetSigners() []sdk.AccAddress {
19
- return []sdk.AccAddress{sdk.AccAddress(m.Authority)}
+ addr, _ := sdk.AccAddressFromBech32(m.Authority)
20
+ return []sdk.AccAddress{addr}
21
}
22
23
// ValidateBasic determines whether the information in the message is formatted correctly, specifically
0 commit comments