mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
refactor: rename ValidateBasic to Validate
This commit is contained in:
parent
f70fa75e86
commit
5b85868993
@ -41,11 +41,14 @@ func (msg *MsgUpdateParams) GetSigners() []sdk.AccAddress {
|
|||||||
return []sdk.AccAddress{addr}
|
return []sdk.AccAddress{addr}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ValidateBasic does a sanity check on the provided data.
|
// Validate does a sanity check on the provided data.
|
||||||
func (msg *MsgUpdateParams) Validate() error {
|
func (msg *MsgUpdateParams) Validate() error {
|
||||||
if _, err := sdk.AccAddressFromBech32(msg.Authority); err != nil {
|
if _, err := sdk.AccAddressFromBech32(msg.Authority); err != nil {
|
||||||
return errors.Wrap(err, "invalid authority address")
|
return errors.Wrap(err, "invalid authority address")
|
||||||
}
|
}
|
||||||
|
|
||||||
return msg.Params.Validate()
|
return msg.Params.Validate()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ╭───────────────────────────────────────────────────────────╮
|
||||||
|
// │ Registration Components │
|
||||||
|
// ╰───────────────────────────────────────────────────────────╯
|
||||||
|
Loading…
x
Reference in New Issue
Block a user