-
Notifications
You must be signed in to change notification settings - Fork 5
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
feat!: add MsgCreatePermanentLockedVestingAccount #42
Changes from 2 commits
9bf8089
717d118
2be6cfd
e05955e
48b6e62
4df8854
e8a40de
601f2ac
590b983
70b40b4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,6 +53,7 @@ func RegisterInterfaces(registry types.InterfaceRegistry) { | |
registry.RegisterImplementations( | ||
(*sdk.Msg)(nil), | ||
&MsgCreateVestingAccount{}, | ||
&MsgCreatePermanentLockedAccount{}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I didn't end up having to add |
||
) | ||
|
||
msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc) | ||
|
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.
This can be
sdkerrors.ErrInvalidRequest,Wrapf
.... which simplifies the code