fix: remove extra spaces in typeUrl

This commit is contained in:
Prad Nukala 2024-09-05 16:41:48 -04:00
parent 81b9c99222
commit 73997ad670

View File

@ -23,26 +23,26 @@ class Proposal {
/// Gov module messages
class MsgGovSubmitProposal extends Msg {
class MsgGovSubmitProposal extends Msg {
typeUrl = "/cosmos.gov.v1beta1.MsgSubmitProposal"
content: Proposal
initialDeposit: List<Coin>
proposer: AccAddress
}
}
class MsgGovVote extends Msg {
class MsgGovVote extends Msg {
typeUrl = "/cosmos.gov.v1beta1.MsgVote"
proposalId: Int
voter: AccAddress
option: Int
}
}
class MsgGovDeposit extends Msg {
class MsgGovDeposit extends Msg {
typeUrl = "/cosmos.gov.v1beta1.MsgDeposit"
proposalId: Int
depositor: AccAddress
amount: List<Coin>
}
}
/// Group module messages
class MsgGroupCreateGroup extends Msg {