4011 lines
104 KiB
Go
4011 lines
104 KiB
Go
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
|
// source: cosmos/group/v1/types.proto
|
|
|
|
package group
|
|
|
|
import (
|
|
fmt "fmt"
|
|
_ "github.com/cosmos/cosmos-proto"
|
|
types "github.com/cosmos/cosmos-sdk/codec/types"
|
|
_ "github.com/cosmos/cosmos-sdk/types/tx/amino"
|
|
_ "github.com/cosmos/gogoproto/gogoproto"
|
|
proto "github.com/cosmos/gogoproto/proto"
|
|
github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types"
|
|
_ "google.golang.org/protobuf/types/known/durationpb"
|
|
_ "google.golang.org/protobuf/types/known/timestamppb"
|
|
io "io"
|
|
math "math"
|
|
math_bits "math/bits"
|
|
time "time"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
var _ = time.Kitchen
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
// VoteOption enumerates the valid vote options for a given proposal.
|
|
type VoteOption int32
|
|
|
|
const (
|
|
// VOTE_OPTION_UNSPECIFIED defines an unspecified vote option which will
|
|
// return an error.
|
|
VOTE_OPTION_UNSPECIFIED VoteOption = 0
|
|
// VOTE_OPTION_YES defines a yes vote option.
|
|
VOTE_OPTION_YES VoteOption = 1
|
|
// VOTE_OPTION_ABSTAIN defines an abstain vote option.
|
|
VOTE_OPTION_ABSTAIN VoteOption = 2
|
|
// VOTE_OPTION_NO defines a no vote option.
|
|
VOTE_OPTION_NO VoteOption = 3
|
|
// VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option.
|
|
VOTE_OPTION_NO_WITH_VETO VoteOption = 4
|
|
)
|
|
|
|
var VoteOption_name = map[int32]string{
|
|
0: "VOTE_OPTION_UNSPECIFIED",
|
|
1: "VOTE_OPTION_YES",
|
|
2: "VOTE_OPTION_ABSTAIN",
|
|
3: "VOTE_OPTION_NO",
|
|
4: "VOTE_OPTION_NO_WITH_VETO",
|
|
}
|
|
|
|
var VoteOption_value = map[string]int32{
|
|
"VOTE_OPTION_UNSPECIFIED": 0,
|
|
"VOTE_OPTION_YES": 1,
|
|
"VOTE_OPTION_ABSTAIN": 2,
|
|
"VOTE_OPTION_NO": 3,
|
|
"VOTE_OPTION_NO_WITH_VETO": 4,
|
|
}
|
|
|
|
func (x VoteOption) String() string {
|
|
return proto.EnumName(VoteOption_name, int32(x))
|
|
}
|
|
|
|
func (VoteOption) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{0}
|
|
}
|
|
|
|
// ProposalStatus defines proposal statuses.
|
|
type ProposalStatus int32
|
|
|
|
const (
|
|
// An empty value is invalid and not allowed.
|
|
PROPOSAL_STATUS_UNSPECIFIED ProposalStatus = 0
|
|
// Initial status of a proposal when submitted.
|
|
PROPOSAL_STATUS_SUBMITTED ProposalStatus = 1
|
|
// Final status of a proposal when the final tally is done and the outcome
|
|
// passes the group policy's decision policy.
|
|
PROPOSAL_STATUS_ACCEPTED ProposalStatus = 2
|
|
// Final status of a proposal when the final tally is done and the outcome
|
|
// is rejected by the group policy's decision policy.
|
|
PROPOSAL_STATUS_REJECTED ProposalStatus = 3
|
|
// Final status of a proposal when the group policy is modified before the
|
|
// final tally.
|
|
PROPOSAL_STATUS_ABORTED ProposalStatus = 4
|
|
// A proposal can be withdrawn before the voting start time by the owner.
|
|
// When this happens the final status is Withdrawn.
|
|
PROPOSAL_STATUS_WITHDRAWN ProposalStatus = 5
|
|
)
|
|
|
|
var ProposalStatus_name = map[int32]string{
|
|
0: "PROPOSAL_STATUS_UNSPECIFIED",
|
|
1: "PROPOSAL_STATUS_SUBMITTED",
|
|
2: "PROPOSAL_STATUS_ACCEPTED",
|
|
3: "PROPOSAL_STATUS_REJECTED",
|
|
4: "PROPOSAL_STATUS_ABORTED",
|
|
5: "PROPOSAL_STATUS_WITHDRAWN",
|
|
}
|
|
|
|
var ProposalStatus_value = map[string]int32{
|
|
"PROPOSAL_STATUS_UNSPECIFIED": 0,
|
|
"PROPOSAL_STATUS_SUBMITTED": 1,
|
|
"PROPOSAL_STATUS_ACCEPTED": 2,
|
|
"PROPOSAL_STATUS_REJECTED": 3,
|
|
"PROPOSAL_STATUS_ABORTED": 4,
|
|
"PROPOSAL_STATUS_WITHDRAWN": 5,
|
|
}
|
|
|
|
func (x ProposalStatus) String() string {
|
|
return proto.EnumName(ProposalStatus_name, int32(x))
|
|
}
|
|
|
|
func (ProposalStatus) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{1}
|
|
}
|
|
|
|
// ProposalExecutorResult defines types of proposal executor results.
|
|
type ProposalExecutorResult int32
|
|
|
|
const (
|
|
// An empty value is not allowed.
|
|
PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED ProposalExecutorResult = 0
|
|
// We have not yet run the executor.
|
|
PROPOSAL_EXECUTOR_RESULT_NOT_RUN ProposalExecutorResult = 1
|
|
// The executor was successful and proposed action updated state.
|
|
PROPOSAL_EXECUTOR_RESULT_SUCCESS ProposalExecutorResult = 2
|
|
// The executor returned an error and proposed action didn't update state.
|
|
PROPOSAL_EXECUTOR_RESULT_FAILURE ProposalExecutorResult = 3
|
|
)
|
|
|
|
var ProposalExecutorResult_name = map[int32]string{
|
|
0: "PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED",
|
|
1: "PROPOSAL_EXECUTOR_RESULT_NOT_RUN",
|
|
2: "PROPOSAL_EXECUTOR_RESULT_SUCCESS",
|
|
3: "PROPOSAL_EXECUTOR_RESULT_FAILURE",
|
|
}
|
|
|
|
var ProposalExecutorResult_value = map[string]int32{
|
|
"PROPOSAL_EXECUTOR_RESULT_UNSPECIFIED": 0,
|
|
"PROPOSAL_EXECUTOR_RESULT_NOT_RUN": 1,
|
|
"PROPOSAL_EXECUTOR_RESULT_SUCCESS": 2,
|
|
"PROPOSAL_EXECUTOR_RESULT_FAILURE": 3,
|
|
}
|
|
|
|
func (x ProposalExecutorResult) String() string {
|
|
return proto.EnumName(ProposalExecutorResult_name, int32(x))
|
|
}
|
|
|
|
func (ProposalExecutorResult) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{2}
|
|
}
|
|
|
|
// Member represents a group member with an account address,
|
|
// non-zero weight, metadata and added_at timestamp.
|
|
type Member struct {
|
|
// address is the member's account address.
|
|
Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
|
|
// weight is the member's voting weight that should be greater than 0.
|
|
Weight string `protobuf:"bytes,2,opt,name=weight,proto3" json:"weight,omitempty"`
|
|
// metadata is any arbitrary metadata attached to the member.
|
|
Metadata string `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
|
|
// added_at is a timestamp specifying when a member was added.
|
|
AddedAt time.Time `protobuf:"bytes,4,opt,name=added_at,json=addedAt,proto3,stdtime" json:"added_at"`
|
|
}
|
|
|
|
func (m *Member) Reset() { *m = Member{} }
|
|
func (m *Member) String() string { return proto.CompactTextString(m) }
|
|
func (*Member) ProtoMessage() {}
|
|
func (*Member) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{0}
|
|
}
|
|
func (m *Member) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *Member) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_Member.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalToSizedBuffer(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (m *Member) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Member.Merge(m, src)
|
|
}
|
|
func (m *Member) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *Member) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Member.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Member proto.InternalMessageInfo
|
|
|
|
func (m *Member) GetAddress() string {
|
|
if m != nil {
|
|
return m.Address
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Member) GetWeight() string {
|
|
if m != nil {
|
|
return m.Weight
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Member) GetMetadata() string {
|
|
if m != nil {
|
|
return m.Metadata
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Member) GetAddedAt() time.Time {
|
|
if m != nil {
|
|
return m.AddedAt
|
|
}
|
|
return time.Time{}
|
|
}
|
|
|
|
// MemberRequest represents a group member to be used in Msg server requests.
|
|
// Contrary to `Member`, it doesn't have any `added_at` field
|
|
// since this field cannot be set as part of requests.
|
|
type MemberRequest struct {
|
|
// address is the member's account address.
|
|
Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
|
|
// weight is the member's voting weight that should be greater than 0.
|
|
Weight string `protobuf:"bytes,2,opt,name=weight,proto3" json:"weight,omitempty"`
|
|
// metadata is any arbitrary metadata attached to the member.
|
|
Metadata string `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
|
|
}
|
|
|
|
func (m *MemberRequest) Reset() { *m = MemberRequest{} }
|
|
func (m *MemberRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*MemberRequest) ProtoMessage() {}
|
|
func (*MemberRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{1}
|
|
}
|
|
func (m *MemberRequest) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *MemberRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_MemberRequest.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalToSizedBuffer(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (m *MemberRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_MemberRequest.Merge(m, src)
|
|
}
|
|
func (m *MemberRequest) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *MemberRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_MemberRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_MemberRequest proto.InternalMessageInfo
|
|
|
|
func (m *MemberRequest) GetAddress() string {
|
|
if m != nil {
|
|
return m.Address
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *MemberRequest) GetWeight() string {
|
|
if m != nil {
|
|
return m.Weight
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *MemberRequest) GetMetadata() string {
|
|
if m != nil {
|
|
return m.Metadata
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// ThresholdDecisionPolicy is a decision policy where a proposal passes when it
|
|
// satisfies the two following conditions:
|
|
// 1. The sum of all `YES` voter's weights is greater or equal than the defined
|
|
// `threshold`.
|
|
// 2. The voting and execution periods of the proposal respect the parameters
|
|
// given by `windows`.
|
|
type ThresholdDecisionPolicy struct {
|
|
// threshold is the minimum weighted sum of `YES` votes that must be met or
|
|
// exceeded for a proposal to succeed.
|
|
Threshold string `protobuf:"bytes,1,opt,name=threshold,proto3" json:"threshold,omitempty"`
|
|
// windows defines the different windows for voting and execution.
|
|
Windows *DecisionPolicyWindows `protobuf:"bytes,2,opt,name=windows,proto3" json:"windows,omitempty"`
|
|
}
|
|
|
|
func (m *ThresholdDecisionPolicy) Reset() { *m = ThresholdDecisionPolicy{} }
|
|
func (m *ThresholdDecisionPolicy) String() string { return proto.CompactTextString(m) }
|
|
func (*ThresholdDecisionPolicy) ProtoMessage() {}
|
|
func (*ThresholdDecisionPolicy) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{2}
|
|
}
|
|
func (m *ThresholdDecisionPolicy) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *ThresholdDecisionPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_ThresholdDecisionPolicy.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalToSizedBuffer(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (m *ThresholdDecisionPolicy) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ThresholdDecisionPolicy.Merge(m, src)
|
|
}
|
|
func (m *ThresholdDecisionPolicy) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *ThresholdDecisionPolicy) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ThresholdDecisionPolicy.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ThresholdDecisionPolicy proto.InternalMessageInfo
|
|
|
|
func (m *ThresholdDecisionPolicy) GetThreshold() string {
|
|
if m != nil {
|
|
return m.Threshold
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ThresholdDecisionPolicy) GetWindows() *DecisionPolicyWindows {
|
|
if m != nil {
|
|
return m.Windows
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// PercentageDecisionPolicy is a decision policy where a proposal passes when
|
|
// it satisfies the two following conditions:
|
|
// 1. The percentage of all `YES` voters' weights out of the total group weight
|
|
// is greater or equal than the given `percentage`.
|
|
// 2. The voting and execution periods of the proposal respect the parameters
|
|
// given by `windows`.
|
|
type PercentageDecisionPolicy struct {
|
|
// percentage is the minimum percentage of the weighted sum of `YES` votes must
|
|
// meet for a proposal to succeed.
|
|
Percentage string `protobuf:"bytes,1,opt,name=percentage,proto3" json:"percentage,omitempty"`
|
|
// windows defines the different windows for voting and execution.
|
|
Windows *DecisionPolicyWindows `protobuf:"bytes,2,opt,name=windows,proto3" json:"windows,omitempty"`
|
|
}
|
|
|
|
func (m *PercentageDecisionPolicy) Reset() { *m = PercentageDecisionPolicy{} }
|
|
func (m *PercentageDecisionPolicy) String() string { return proto.CompactTextString(m) }
|
|
func (*PercentageDecisionPolicy) ProtoMessage() {}
|
|
func (*PercentageDecisionPolicy) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{3}
|
|
}
|
|
func (m *PercentageDecisionPolicy) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *PercentageDecisionPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_PercentageDecisionPolicy.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalToSizedBuffer(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (m *PercentageDecisionPolicy) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_PercentageDecisionPolicy.Merge(m, src)
|
|
}
|
|
func (m *PercentageDecisionPolicy) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *PercentageDecisionPolicy) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_PercentageDecisionPolicy.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_PercentageDecisionPolicy proto.InternalMessageInfo
|
|
|
|
func (m *PercentageDecisionPolicy) GetPercentage() string {
|
|
if m != nil {
|
|
return m.Percentage
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *PercentageDecisionPolicy) GetWindows() *DecisionPolicyWindows {
|
|
if m != nil {
|
|
return m.Windows
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DecisionPolicyWindows defines the different windows for voting and execution.
|
|
type DecisionPolicyWindows struct {
|
|
// voting_period is the duration from submission of a proposal to the end of voting period
|
|
// Within this times votes can be submitted with MsgVote.
|
|
VotingPeriod time.Duration `protobuf:"bytes,1,opt,name=voting_period,json=votingPeriod,proto3,stdduration" json:"voting_period"`
|
|
// min_execution_period is the minimum duration after the proposal submission
|
|
// where members can start sending MsgExec. This means that the window for
|
|
// sending a MsgExec transaction is:
|
|
// `[ submission + min_execution_period ; submission + voting_period + max_execution_period]`
|
|
// where max_execution_period is a app-specific config, defined in the keeper.
|
|
// If not set, min_execution_period will default to 0.
|
|
//
|
|
// Please make sure to set a `min_execution_period` that is smaller than
|
|
// `voting_period + max_execution_period`, or else the above execution window
|
|
// is empty, meaning that all proposals created with this decision policy
|
|
// won't be able to be executed.
|
|
MinExecutionPeriod time.Duration `protobuf:"bytes,2,opt,name=min_execution_period,json=minExecutionPeriod,proto3,stdduration" json:"min_execution_period"`
|
|
}
|
|
|
|
func (m *DecisionPolicyWindows) Reset() { *m = DecisionPolicyWindows{} }
|
|
func (m *DecisionPolicyWindows) String() string { return proto.CompactTextString(m) }
|
|
func (*DecisionPolicyWindows) ProtoMessage() {}
|
|
func (*DecisionPolicyWindows) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{4}
|
|
}
|
|
func (m *DecisionPolicyWindows) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *DecisionPolicyWindows) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_DecisionPolicyWindows.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalToSizedBuffer(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (m *DecisionPolicyWindows) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DecisionPolicyWindows.Merge(m, src)
|
|
}
|
|
func (m *DecisionPolicyWindows) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *DecisionPolicyWindows) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DecisionPolicyWindows.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DecisionPolicyWindows proto.InternalMessageInfo
|
|
|
|
func (m *DecisionPolicyWindows) GetVotingPeriod() time.Duration {
|
|
if m != nil {
|
|
return m.VotingPeriod
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DecisionPolicyWindows) GetMinExecutionPeriod() time.Duration {
|
|
if m != nil {
|
|
return m.MinExecutionPeriod
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// GroupInfo represents the high-level on-chain information for a group.
|
|
type GroupInfo struct {
|
|
// id is the unique ID of the group.
|
|
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
// admin is the account address of the group's admin.
|
|
Admin string `protobuf:"bytes,2,opt,name=admin,proto3" json:"admin,omitempty"`
|
|
// metadata is any arbitrary metadata to attached to the group.
|
|
Metadata string `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
|
|
// version is used to track changes to a group's membership structure that
|
|
// would break existing proposals. Whenever any members weight is changed,
|
|
// or any member is added or removed this version is incremented and will
|
|
// cause proposals based on older versions of this group to fail
|
|
Version uint64 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`
|
|
// total_weight is the sum of the group members' weights.
|
|
TotalWeight string `protobuf:"bytes,5,opt,name=total_weight,json=totalWeight,proto3" json:"total_weight,omitempty"`
|
|
// created_at is a timestamp specifying when a group was created.
|
|
CreatedAt time.Time `protobuf:"bytes,6,opt,name=created_at,json=createdAt,proto3,stdtime" json:"created_at"`
|
|
}
|
|
|
|
func (m *GroupInfo) Reset() { *m = GroupInfo{} }
|
|
func (m *GroupInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*GroupInfo) ProtoMessage() {}
|
|
func (*GroupInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{5}
|
|
}
|
|
func (m *GroupInfo) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *GroupInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_GroupInfo.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalToSizedBuffer(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (m *GroupInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GroupInfo.Merge(m, src)
|
|
}
|
|
func (m *GroupInfo) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *GroupInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GroupInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GroupInfo proto.InternalMessageInfo
|
|
|
|
func (m *GroupInfo) GetId() uint64 {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GroupInfo) GetAdmin() string {
|
|
if m != nil {
|
|
return m.Admin
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *GroupInfo) GetMetadata() string {
|
|
if m != nil {
|
|
return m.Metadata
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *GroupInfo) GetVersion() uint64 {
|
|
if m != nil {
|
|
return m.Version
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GroupInfo) GetTotalWeight() string {
|
|
if m != nil {
|
|
return m.TotalWeight
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *GroupInfo) GetCreatedAt() time.Time {
|
|
if m != nil {
|
|
return m.CreatedAt
|
|
}
|
|
return time.Time{}
|
|
}
|
|
|
|
// GroupMember represents the relationship between a group and a member.
|
|
type GroupMember struct {
|
|
// group_id is the unique ID of the group.
|
|
GroupId uint64 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
|
|
// member is the member data.
|
|
Member *Member `protobuf:"bytes,2,opt,name=member,proto3" json:"member,omitempty"`
|
|
}
|
|
|
|
func (m *GroupMember) Reset() { *m = GroupMember{} }
|
|
func (m *GroupMember) String() string { return proto.CompactTextString(m) }
|
|
func (*GroupMember) ProtoMessage() {}
|
|
func (*GroupMember) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{6}
|
|
}
|
|
func (m *GroupMember) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *GroupMember) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_GroupMember.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalToSizedBuffer(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (m *GroupMember) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GroupMember.Merge(m, src)
|
|
}
|
|
func (m *GroupMember) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *GroupMember) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GroupMember.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GroupMember proto.InternalMessageInfo
|
|
|
|
func (m *GroupMember) GetGroupId() uint64 {
|
|
if m != nil {
|
|
return m.GroupId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GroupMember) GetMember() *Member {
|
|
if m != nil {
|
|
return m.Member
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GroupPolicyInfo represents the high-level on-chain information for a group policy.
|
|
type GroupPolicyInfo struct {
|
|
// address is the account address of group policy.
|
|
Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
|
|
// group_id is the unique ID of the group.
|
|
GroupId uint64 `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
|
|
// admin is the account address of the group admin.
|
|
Admin string `protobuf:"bytes,3,opt,name=admin,proto3" json:"admin,omitempty"`
|
|
// metadata is any arbitrary metadata attached to the group policy.
|
|
Metadata string `protobuf:"bytes,4,opt,name=metadata,proto3" json:"metadata,omitempty"`
|
|
// version is used to track changes to a group's GroupPolicyInfo structure that
|
|
// would create a different result on a running proposal.
|
|
Version uint64 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty"`
|
|
// decision_policy specifies the group policy's decision policy.
|
|
DecisionPolicy *types.Any `protobuf:"bytes,6,opt,name=decision_policy,json=decisionPolicy,proto3" json:"decision_policy,omitempty"`
|
|
// created_at is a timestamp specifying when a group policy was created.
|
|
CreatedAt time.Time `protobuf:"bytes,7,opt,name=created_at,json=createdAt,proto3,stdtime" json:"created_at"`
|
|
}
|
|
|
|
func (m *GroupPolicyInfo) Reset() { *m = GroupPolicyInfo{} }
|
|
func (m *GroupPolicyInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*GroupPolicyInfo) ProtoMessage() {}
|
|
func (*GroupPolicyInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{7}
|
|
}
|
|
func (m *GroupPolicyInfo) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *GroupPolicyInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_GroupPolicyInfo.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalToSizedBuffer(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (m *GroupPolicyInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GroupPolicyInfo.Merge(m, src)
|
|
}
|
|
func (m *GroupPolicyInfo) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *GroupPolicyInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GroupPolicyInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GroupPolicyInfo proto.InternalMessageInfo
|
|
|
|
// Proposal defines a group proposal. Any member of a group can submit a proposal
|
|
// for a group policy to decide upon.
|
|
// A proposal consists of a set of `sdk.Msg`s that will be executed if the proposal
|
|
// passes as well as some optional metadata associated with the proposal.
|
|
type Proposal struct {
|
|
// id is the unique id of the proposal.
|
|
Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
// group_policy_address is the account address of group policy.
|
|
GroupPolicyAddress string `protobuf:"bytes,2,opt,name=group_policy_address,json=groupPolicyAddress,proto3" json:"group_policy_address,omitempty"`
|
|
// metadata is any arbitrary metadata attached to the proposal.
|
|
Metadata string `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
|
|
// proposers are the account addresses of the proposers.
|
|
Proposers []string `protobuf:"bytes,4,rep,name=proposers,proto3" json:"proposers,omitempty"`
|
|
// submit_time is a timestamp specifying when a proposal was submitted.
|
|
SubmitTime time.Time `protobuf:"bytes,5,opt,name=submit_time,json=submitTime,proto3,stdtime" json:"submit_time"`
|
|
// group_version tracks the version of the group at proposal submission.
|
|
// This field is here for informational purposes only.
|
|
GroupVersion uint64 `protobuf:"varint,6,opt,name=group_version,json=groupVersion,proto3" json:"group_version,omitempty"`
|
|
// group_policy_version tracks the version of the group policy at proposal submission.
|
|
// When a decision policy is changed, existing proposals from previous policy
|
|
// versions will become invalid with the `ABORTED` status.
|
|
// This field is here for informational purposes only.
|
|
GroupPolicyVersion uint64 `protobuf:"varint,7,opt,name=group_policy_version,json=groupPolicyVersion,proto3" json:"group_policy_version,omitempty"`
|
|
// status represents the high level position in the life cycle of the proposal. Initial value is Submitted.
|
|
Status ProposalStatus `protobuf:"varint,8,opt,name=status,proto3,enum=cosmos.group.v1.ProposalStatus" json:"status,omitempty"`
|
|
// final_tally_result contains the sums of all weighted votes for this
|
|
// proposal for each vote option. It is empty at submission, and only
|
|
// populated after tallying, at voting period end or at proposal execution,
|
|
// whichever happens first.
|
|
FinalTallyResult TallyResult `protobuf:"bytes,9,opt,name=final_tally_result,json=finalTallyResult,proto3" json:"final_tally_result"`
|
|
// voting_period_end is the timestamp before which voting must be done.
|
|
// Unless a successful MsgExec is called before (to execute a proposal whose
|
|
// tally is successful before the voting period ends), tallying will be done
|
|
// at this point, and the `final_tally_result`and `status` fields will be
|
|
// accordingly updated.
|
|
VotingPeriodEnd time.Time `protobuf:"bytes,10,opt,name=voting_period_end,json=votingPeriodEnd,proto3,stdtime" json:"voting_period_end"`
|
|
// executor_result is the final result of the proposal execution. Initial value is NotRun.
|
|
ExecutorResult ProposalExecutorResult `protobuf:"varint,11,opt,name=executor_result,json=executorResult,proto3,enum=cosmos.group.v1.ProposalExecutorResult" json:"executor_result,omitempty"`
|
|
// messages is a list of `sdk.Msg`s that will be executed if the proposal passes.
|
|
Messages []*types.Any `protobuf:"bytes,12,rep,name=messages,proto3" json:"messages,omitempty"`
|
|
}
|
|
|
|
func (m *Proposal) Reset() { *m = Proposal{} }
|
|
func (m *Proposal) String() string { return proto.CompactTextString(m) }
|
|
func (*Proposal) ProtoMessage() {}
|
|
func (*Proposal) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{8}
|
|
}
|
|
func (m *Proposal) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *Proposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_Proposal.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalToSizedBuffer(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (m *Proposal) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Proposal.Merge(m, src)
|
|
}
|
|
func (m *Proposal) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *Proposal) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Proposal.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Proposal proto.InternalMessageInfo
|
|
|
|
// TallyResult represents the sum of weighted votes for each vote option.
|
|
type TallyResult struct {
|
|
// yes_count is the weighted sum of yes votes.
|
|
YesCount string `protobuf:"bytes,1,opt,name=yes_count,json=yesCount,proto3" json:"yes_count,omitempty"`
|
|
// abstain_count is the weighted sum of abstainers.
|
|
AbstainCount string `protobuf:"bytes,2,opt,name=abstain_count,json=abstainCount,proto3" json:"abstain_count,omitempty"`
|
|
// no_count is the weighted sum of no votes.
|
|
NoCount string `protobuf:"bytes,3,opt,name=no_count,json=noCount,proto3" json:"no_count,omitempty"`
|
|
// no_with_veto_count is the weighted sum of veto.
|
|
NoWithVetoCount string `protobuf:"bytes,4,opt,name=no_with_veto_count,json=noWithVetoCount,proto3" json:"no_with_veto_count,omitempty"`
|
|
}
|
|
|
|
func (m *TallyResult) Reset() { *m = TallyResult{} }
|
|
func (m *TallyResult) String() string { return proto.CompactTextString(m) }
|
|
func (*TallyResult) ProtoMessage() {}
|
|
func (*TallyResult) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{9}
|
|
}
|
|
func (m *TallyResult) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *TallyResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_TallyResult.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalToSizedBuffer(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (m *TallyResult) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_TallyResult.Merge(m, src)
|
|
}
|
|
func (m *TallyResult) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *TallyResult) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_TallyResult.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_TallyResult proto.InternalMessageInfo
|
|
|
|
// Vote represents a vote for a proposal.
|
|
type Vote struct {
|
|
// proposal is the unique ID of the proposal.
|
|
ProposalId uint64 `protobuf:"varint,1,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty"`
|
|
// voter is the account address of the voter.
|
|
Voter string `protobuf:"bytes,2,opt,name=voter,proto3" json:"voter,omitempty"`
|
|
// option is the voter's choice on the proposal.
|
|
Option VoteOption `protobuf:"varint,3,opt,name=option,proto3,enum=cosmos.group.v1.VoteOption" json:"option,omitempty"`
|
|
// metadata is any arbitrary metadata attached to the vote.
|
|
Metadata string `protobuf:"bytes,4,opt,name=metadata,proto3" json:"metadata,omitempty"`
|
|
// submit_time is the timestamp when the vote was submitted.
|
|
SubmitTime time.Time `protobuf:"bytes,5,opt,name=submit_time,json=submitTime,proto3,stdtime" json:"submit_time"`
|
|
}
|
|
|
|
func (m *Vote) Reset() { *m = Vote{} }
|
|
func (m *Vote) String() string { return proto.CompactTextString(m) }
|
|
func (*Vote) ProtoMessage() {}
|
|
func (*Vote) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_f5bddd15d7a54a9d, []int{10}
|
|
}
|
|
func (m *Vote) XXX_Unmarshal(b []byte) error {
|
|
return m.Unmarshal(b)
|
|
}
|
|
func (m *Vote) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
if deterministic {
|
|
return xxx_messageInfo_Vote.Marshal(b, m, deterministic)
|
|
} else {
|
|
b = b[:cap(b)]
|
|
n, err := m.MarshalToSizedBuffer(b)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return b[:n], nil
|
|
}
|
|
}
|
|
func (m *Vote) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Vote.Merge(m, src)
|
|
}
|
|
func (m *Vote) XXX_Size() int {
|
|
return m.Size()
|
|
}
|
|
func (m *Vote) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Vote.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Vote proto.InternalMessageInfo
|
|
|
|
func (m *Vote) GetProposalId() uint64 {
|
|
if m != nil {
|
|
return m.ProposalId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Vote) GetVoter() string {
|
|
if m != nil {
|
|
return m.Voter
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Vote) GetOption() VoteOption {
|
|
if m != nil {
|
|
return m.Option
|
|
}
|
|
return VOTE_OPTION_UNSPECIFIED
|
|
}
|
|
|
|
func (m *Vote) GetMetadata() string {
|
|
if m != nil {
|
|
return m.Metadata
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Vote) GetSubmitTime() time.Time {
|
|
if m != nil {
|
|
return m.SubmitTime
|
|
}
|
|
return time.Time{}
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("cosmos.group.v1.VoteOption", VoteOption_name, VoteOption_value)
|
|
proto.RegisterEnum("cosmos.group.v1.ProposalStatus", ProposalStatus_name, ProposalStatus_value)
|
|
proto.RegisterEnum("cosmos.group.v1.ProposalExecutorResult", ProposalExecutorResult_name, ProposalExecutorResult_value)
|
|
proto.RegisterType((*Member)(nil), "cosmos.group.v1.Member")
|
|
proto.RegisterType((*MemberRequest)(nil), "cosmos.group.v1.MemberRequest")
|
|
proto.RegisterType((*ThresholdDecisionPolicy)(nil), "cosmos.group.v1.ThresholdDecisionPolicy")
|
|
proto.RegisterType((*PercentageDecisionPolicy)(nil), "cosmos.group.v1.PercentageDecisionPolicy")
|
|
proto.RegisterType((*DecisionPolicyWindows)(nil), "cosmos.group.v1.DecisionPolicyWindows")
|
|
proto.RegisterType((*GroupInfo)(nil), "cosmos.group.v1.GroupInfo")
|
|
proto.RegisterType((*GroupMember)(nil), "cosmos.group.v1.GroupMember")
|
|
proto.RegisterType((*GroupPolicyInfo)(nil), "cosmos.group.v1.GroupPolicyInfo")
|
|
proto.RegisterType((*Proposal)(nil), "cosmos.group.v1.Proposal")
|
|
proto.RegisterType((*TallyResult)(nil), "cosmos.group.v1.TallyResult")
|
|
proto.RegisterType((*Vote)(nil), "cosmos.group.v1.Vote")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("cosmos/group/v1/types.proto", fileDescriptor_f5bddd15d7a54a9d) }
|
|
|
|
var fileDescriptor_f5bddd15d7a54a9d = []byte{
|
|
// 1346 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xcd, 0x6f, 0x1a, 0x47,
|
|
0x1b, 0x67, 0x01, 0xf3, 0xf1, 0x60, 0x03, 0x99, 0xf8, 0x8d, 0xb1, 0x9d, 0x17, 0xfc, 0x92, 0xe8,
|
|
0x7d, 0x2d, 0xbf, 0x32, 0x24, 0x8e, 0xd4, 0xaa, 0x3e, 0x54, 0x05, 0xbc, 0x69, 0x88, 0x12, 0x40,
|
|
0xbb, 0x8b, 0xdd, 0xe4, 0xb2, 0x5a, 0xb3, 0x13, 0xbc, 0x2a, 0xec, 0xd0, 0xdd, 0xc1, 0x0e, 0xff,
|
|
0x41, 0xd4, 0x4b, 0x73, 0xec, 0xa5, 0x52, 0xa4, 0x5e, 0x7a, 0xcc, 0xc1, 0xaa, 0xaa, 0x1e, 0x7b,
|
|
0x8a, 0x72, 0x88, 0xa2, 0x9e, 0x7a, 0x6a, 0xab, 0xe4, 0x90, 0x9e, 0x7a, 0xea, 0xb5, 0x52, 0xb5,
|
|
0x33, 0xb3, 0x98, 0x0f, 0x9b, 0xca, 0x51, 0xd4, 0x8b, 0xe5, 0x99, 0xdf, 0xef, 0x79, 0xe6, 0xf7,
|
|
0x7c, 0x02, 0xb0, 0xda, 0x22, 0x6e, 0x97, 0xb8, 0xc5, 0xb6, 0x43, 0xfa, 0xbd, 0xe2, 0xe1, 0xf5,
|
|
0x22, 0x1d, 0xf4, 0xb0, 0x5b, 0xe8, 0x39, 0x84, 0x12, 0x94, 0xe2, 0x60, 0x81, 0x81, 0x85, 0xc3,
|
|
0xeb, 0x2b, 0x8b, 0x6d, 0xd2, 0x26, 0x0c, 0x2b, 0x7a, 0xff, 0x71, 0xda, 0x4a, 0xb6, 0x4d, 0x48,
|
|
0xbb, 0x83, 0x8b, 0xec, 0xb4, 0xdf, 0x7f, 0x50, 0x34, 0xfb, 0x8e, 0x41, 0x2d, 0x62, 0x0b, 0x3c,
|
|
0x37, 0x89, 0x53, 0xab, 0x8b, 0x5d, 0x6a, 0x74, 0x7b, 0x82, 0xb0, 0xcc, 0xdf, 0xd1, 0xb9, 0x67,
|
|
0xf1, 0xa8, 0x80, 0x26, 0x6d, 0x0d, 0x7b, 0x20, 0xa0, 0x0b, 0x46, 0xd7, 0xb2, 0x49, 0x91, 0xfd,
|
|
0xe5, 0x57, 0xf9, 0x6f, 0x25, 0x88, 0xdc, 0xc5, 0xdd, 0x7d, 0xec, 0xa0, 0x2d, 0x88, 0x1a, 0xa6,
|
|
0xe9, 0x60, 0xd7, 0xcd, 0x48, 0x6b, 0xd2, 0x7a, 0xbc, 0x9c, 0xf9, 0xf1, 0x78, 0x73, 0x51, 0xf8,
|
|
0x2e, 0x71, 0x44, 0xa5, 0x8e, 0x65, 0xb7, 0x15, 0x9f, 0x88, 0x2e, 0x41, 0xe4, 0x08, 0x5b, 0xed,
|
|
0x03, 0x9a, 0x09, 0x7a, 0x26, 0x8a, 0x38, 0xa1, 0x15, 0x88, 0x75, 0x31, 0x35, 0x4c, 0x83, 0x1a,
|
|
0x99, 0x10, 0x43, 0x86, 0x67, 0xb4, 0x03, 0x31, 0xc3, 0x34, 0xb1, 0xa9, 0x1b, 0x34, 0x13, 0x5e,
|
|
0x93, 0xd6, 0x13, 0x5b, 0x2b, 0x05, 0xae, 0xb9, 0xe0, 0x6b, 0x2e, 0x68, 0x7e, 0xbc, 0xe5, 0x85,
|
|
0x67, 0x3f, 0xe7, 0x02, 0x8f, 0x7f, 0xc9, 0x49, 0xdf, 0xbc, 0x79, 0xba, 0x21, 0xb1, 0x97, 0xb1,
|
|
0x59, 0xa2, 0xf9, 0x23, 0x58, 0xe0, 0xba, 0x15, 0xfc, 0x59, 0x1f, 0xbb, 0xf4, 0x9f, 0x92, 0x9f,
|
|
0x3f, 0x96, 0x60, 0x49, 0x3b, 0x70, 0xb0, 0x7b, 0x40, 0x3a, 0xe6, 0x0e, 0x6e, 0x59, 0xae, 0x45,
|
|
0xec, 0x06, 0xe9, 0x58, 0xad, 0x01, 0xba, 0x0c, 0x71, 0xea, 0x43, 0x5c, 0x85, 0x72, 0x72, 0x81,
|
|
0x3e, 0x82, 0xe8, 0x91, 0x65, 0x9b, 0xe4, 0xc8, 0x65, 0xcf, 0x25, 0xb6, 0xfe, 0x5b, 0x98, 0x68,
|
|
0x97, 0xc2, 0xb8, 0xbf, 0x3d, 0xce, 0x56, 0x7c, 0xb3, 0xed, 0x0f, 0x9e, 0x1f, 0x6f, 0x26, 0xc7,
|
|
0x39, 0x9f, 0xbf, 0x79, 0xba, 0x91, 0xe7, 0x6e, 0x36, 0x5d, 0xf3, 0xd3, 0xe2, 0x19, 0xd2, 0xf2,
|
|
0xdf, 0x49, 0x90, 0x69, 0x60, 0xa7, 0x85, 0x6d, 0x6a, 0xb4, 0xf1, 0x84, 0xee, 0x2c, 0x40, 0x6f,
|
|
0x88, 0x09, 0xe1, 0x23, 0x37, 0xef, 0x40, 0xf9, 0xf6, 0xe9, 0xca, 0xaf, 0x8c, 0x28, 0x3f, 0x4b,
|
|
0x5d, 0xfe, 0x07, 0x09, 0xfe, 0x75, 0xaa, 0x7b, 0x74, 0x17, 0x16, 0x0e, 0x09, 0xb5, 0xec, 0xb6,
|
|
0xde, 0xc3, 0x8e, 0x45, 0x78, 0xce, 0x13, 0x5b, 0xcb, 0x53, 0xfd, 0xb4, 0x23, 0xe6, 0x8b, 0xb7,
|
|
0xd3, 0x97, 0xc3, 0x76, 0x9a, 0xe7, 0xe6, 0x0d, 0x66, 0x8d, 0xee, 0xc3, 0x62, 0xd7, 0xb2, 0x75,
|
|
0xfc, 0x10, 0xb7, 0xfa, 0x1e, 0xdb, 0xf7, 0x1a, 0x3c, 0xa7, 0x57, 0xd4, 0xb5, 0x6c, 0xd9, 0x77,
|
|
0xc2, 0x7d, 0xe7, 0x7f, 0x97, 0x20, 0xfe, 0xb1, 0x97, 0xac, 0xaa, 0xfd, 0x80, 0xa0, 0x24, 0x04,
|
|
0x2d, 0xae, 0x36, 0xac, 0x04, 0x2d, 0x13, 0x15, 0x60, 0xce, 0x30, 0xbb, 0x96, 0xcd, 0xfb, 0x70,
|
|
0x46, 0xeb, 0x72, 0xda, 0xcc, 0xf9, 0xca, 0x40, 0xf4, 0x10, 0x3b, 0x5e, 0xb2, 0xd8, 0x78, 0x85,
|
|
0x15, 0xff, 0x88, 0xfe, 0x03, 0xf3, 0x94, 0x50, 0xa3, 0xa3, 0x8b, 0xa6, 0x9f, 0x63, 0x96, 0x09,
|
|
0x76, 0xb7, 0xc7, 0x3b, 0xff, 0x16, 0x40, 0xcb, 0xc1, 0x06, 0xe5, 0xe3, 0x19, 0x39, 0xef, 0x78,
|
|
0xc6, 0x85, 0x71, 0x89, 0xe6, 0xef, 0x41, 0x82, 0xc5, 0x2b, 0xb6, 0xcb, 0x32, 0xc4, 0x58, 0xaf,
|
|
0xe8, 0xc3, 0xb8, 0xa3, 0xec, 0x5c, 0x35, 0x51, 0x11, 0x22, 0x5d, 0x46, 0x12, 0x89, 0x5e, 0x9a,
|
|
0x6a, 0x2e, 0x31, 0xe9, 0x82, 0x96, 0xff, 0x33, 0x08, 0x29, 0xe6, 0x9b, 0x77, 0x03, 0xcb, 0xe8,
|
|
0xdb, 0x8c, 0xff, 0xa8, 0xa6, 0xe0, 0xb8, 0xa6, 0x61, 0x41, 0x42, 0xe7, 0x2f, 0x48, 0xf8, 0xec,
|
|
0x82, 0xcc, 0x8d, 0x17, 0xc4, 0x80, 0x94, 0x29, 0x1a, 0x5b, 0xef, 0xb1, 0x58, 0x44, 0xca, 0x17,
|
|
0xa7, 0x52, 0x5e, 0xb2, 0x07, 0xe5, 0xfc, 0xf3, 0xe3, 0xcd, 0xec, 0xec, 0xc1, 0x53, 0x92, 0xe6,
|
|
0xf8, 0x68, 0x8f, 0x17, 0x34, 0xfa, 0xf6, 0x05, 0xdd, 0x8e, 0x3d, 0x7a, 0x92, 0x0b, 0xfc, 0xf6,
|
|
0x24, 0x27, 0xe5, 0x5f, 0xcc, 0x41, 0xac, 0xe1, 0x90, 0x1e, 0x71, 0x8d, 0xce, 0x54, 0x2b, 0xdf,
|
|
0x86, 0x45, 0x9e, 0x54, 0x1e, 0x90, 0xee, 0x57, 0xe5, 0xef, 0x3a, 0x1b, 0xb5, 0x4f, 0x2a, 0x2a,
|
|
0x90, 0x99, 0x6d, 0xfe, 0x1e, 0xc4, 0x7b, 0x4c, 0x03, 0x76, 0xdc, 0x4c, 0x78, 0x2d, 0x34, 0xd3,
|
|
0xf9, 0x09, 0x15, 0xdd, 0x86, 0x84, 0xdb, 0xdf, 0xef, 0x5a, 0x54, 0xf7, 0x3e, 0x54, 0x59, 0x45,
|
|
0xce, 0x95, 0x11, 0xe0, 0xd6, 0x1e, 0x8e, 0xae, 0xc0, 0x02, 0x8f, 0xd5, 0xaf, 0x6f, 0x84, 0xa5,
|
|
0x61, 0x9e, 0x5d, 0xee, 0x8a, 0x22, 0x5f, 0x9b, 0x48, 0x88, 0xcf, 0x8d, 0x32, 0xee, 0x68, 0xd8,
|
|
0xbe, 0xc5, 0xfb, 0x10, 0x71, 0xa9, 0x41, 0xfb, 0x6e, 0x26, 0xb6, 0x26, 0xad, 0x27, 0xb7, 0x72,
|
|
0x53, 0x03, 0xe1, 0x67, 0x5f, 0x65, 0x34, 0x45, 0xd0, 0x51, 0x13, 0xd0, 0x03, 0xcb, 0x36, 0x3a,
|
|
0x3a, 0x35, 0x3a, 0x9d, 0x81, 0xee, 0x60, 0xb7, 0xdf, 0xa1, 0x99, 0x38, 0x0b, 0xf1, 0xf2, 0x94,
|
|
0x13, 0xcd, 0x23, 0x29, 0x8c, 0x53, 0x8e, 0x7b, 0x41, 0xf2, 0x00, 0xd3, 0xcc, 0xc5, 0x08, 0x88,
|
|
0x9a, 0x70, 0x61, 0x6c, 0xcd, 0xea, 0xd8, 0x36, 0x33, 0x70, 0xde, 0xc4, 0xa5, 0x46, 0x77, 0xad,
|
|
0x6c, 0x9b, 0xa8, 0x01, 0x29, 0xbe, 0x6a, 0x89, 0xe3, 0x4b, 0x4d, 0xb0, 0x78, 0xff, 0x77, 0x66,
|
|
0xbc, 0xb2, 0xe0, 0x73, 0x61, 0x4a, 0x12, 0x8f, 0x9d, 0xd1, 0x35, 0xaf, 0x5f, 0x5c, 0xd7, 0x68,
|
|
0x63, 0x37, 0x33, 0xbf, 0x16, 0x3a, 0x6b, 0x90, 0x94, 0x21, 0x6b, 0x3b, 0xec, 0x35, 0x75, 0xfe,
|
|
0x2b, 0x09, 0x12, 0xa3, 0x01, 0xaf, 0x42, 0x7c, 0x80, 0x5d, 0xbd, 0x45, 0xfa, 0x36, 0x15, 0x1f,
|
|
0x87, 0xb1, 0x01, 0x76, 0x2b, 0xde, 0xd9, 0x2b, 0xba, 0xb1, 0xef, 0x52, 0xc3, 0xb2, 0x05, 0x81,
|
|
0x7f, 0x77, 0x98, 0x17, 0x97, 0x9c, 0xb4, 0x0c, 0x31, 0x9b, 0x08, 0x9c, 0x77, 0x6e, 0xd4, 0x26,
|
|
0x1c, 0xfa, 0x3f, 0x20, 0x9b, 0xe8, 0x47, 0x16, 0x3d, 0xd0, 0x0f, 0x31, 0xf5, 0x49, 0x7c, 0x69,
|
|
0xa4, 0x6c, 0xb2, 0x67, 0xd1, 0x83, 0x5d, 0x4c, 0x39, 0x59, 0xe8, 0xfb, 0x43, 0x82, 0xf0, 0x2e,
|
|
0xa1, 0x18, 0xe5, 0x20, 0xd1, 0x13, 0xa9, 0x38, 0x59, 0xa4, 0xe0, 0x5f, 0xf1, 0xbd, 0x75, 0x48,
|
|
0xa8, 0x58, 0xa5, 0x33, 0xf7, 0x16, 0xa3, 0xa1, 0x1b, 0x10, 0x21, 0x3d, 0xef, 0x63, 0x8a, 0xa9,
|
|
0x4c, 0x6e, 0xad, 0x4e, 0xa5, 0xde, 0x7b, 0xb7, 0xce, 0x28, 0x8a, 0xa0, 0xce, 0x5c, 0x76, 0xef,
|
|
0x70, 0xbc, 0x36, 0xbe, 0x90, 0x00, 0x4e, 0x9e, 0x47, 0xab, 0xb0, 0xb4, 0x5b, 0xd7, 0x64, 0xbd,
|
|
0xde, 0xd0, 0xaa, 0xf5, 0x9a, 0xde, 0xac, 0xa9, 0x0d, 0xb9, 0x52, 0xbd, 0x59, 0x95, 0x77, 0xd2,
|
|
0x01, 0x74, 0x11, 0x52, 0xa3, 0xe0, 0x3d, 0x59, 0x4d, 0x4b, 0x68, 0x09, 0x2e, 0x8e, 0x5e, 0x96,
|
|
0xca, 0xaa, 0x56, 0xaa, 0xd6, 0xd2, 0x41, 0x84, 0x20, 0x39, 0x0a, 0xd4, 0xea, 0xe9, 0x10, 0xba,
|
|
0x0c, 0x99, 0xf1, 0x3b, 0x7d, 0xaf, 0xaa, 0xdd, 0xd2, 0x77, 0x65, 0xad, 0x9e, 0x0e, 0xaf, 0x84,
|
|
0x1f, 0x7d, 0x9d, 0x0d, 0x6c, 0xbc, 0x90, 0x20, 0x39, 0x3e, 0x7b, 0x28, 0x07, 0xab, 0x0d, 0xa5,
|
|
0xde, 0xa8, 0xab, 0xa5, 0x3b, 0xba, 0xaa, 0x95, 0xb4, 0xa6, 0x3a, 0xa1, 0xec, 0xdf, 0xb0, 0x3c,
|
|
0x49, 0x50, 0x9b, 0xe5, 0xbb, 0x55, 0x4d, 0x93, 0x77, 0xd2, 0x92, 0xf7, 0xec, 0x24, 0x5c, 0xaa,
|
|
0x54, 0xe4, 0x86, 0x87, 0x06, 0x4f, 0x43, 0x15, 0xf9, 0xb6, 0x5c, 0xf1, 0xd0, 0x90, 0x97, 0x91,
|
|
0x29, 0xdb, 0x72, 0x5d, 0xf1, 0xc0, 0xf0, 0x69, 0xef, 0x7a, 0x01, 0xed, 0x28, 0xa5, 0xbd, 0x5a,
|
|
0x7a, 0x4e, 0x04, 0xf4, 0xbd, 0x04, 0x97, 0x4e, 0x1f, 0x2e, 0xb4, 0x0e, 0x57, 0x87, 0xf6, 0xf2,
|
|
0x27, 0x72, 0xa5, 0xa9, 0xd5, 0x15, 0x5d, 0x91, 0xd5, 0xe6, 0x1d, 0x6d, 0x22, 0xc2, 0xab, 0xb0,
|
|
0x76, 0x26, 0xb3, 0x56, 0xd7, 0x74, 0xa5, 0x59, 0x4b, 0x4b, 0x33, 0x59, 0x6a, 0xb3, 0x52, 0x91,
|
|
0x55, 0x35, 0x1d, 0x9c, 0xc9, 0xba, 0x59, 0xaa, 0xde, 0x69, 0x2a, 0x72, 0x3a, 0xc4, 0xc5, 0x97,
|
|
0x3f, 0x7c, 0xf6, 0x2a, 0x2b, 0xbd, 0x7c, 0x95, 0x95, 0x7e, 0x7d, 0x95, 0x95, 0x1e, 0xbf, 0xce,
|
|
0x06, 0x5e, 0xbe, 0xce, 0x06, 0x7e, 0x7a, 0x9d, 0x0d, 0xdc, 0xbf, 0xda, 0xb6, 0xe8, 0x41, 0x7f,
|
|
0xbf, 0xd0, 0x22, 0x5d, 0xf1, 0xeb, 0xa8, 0x38, 0xf2, 0x4d, 0xf3, 0x21, 0xff, 0xf1, 0xb6, 0x1f,
|
|
0x61, 0xed, 0x78, 0xe3, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa0, 0xb3, 0xfe, 0xde, 0xd3, 0x0d,
|
|
0x00, 0x00,
|
|
}
|
|
|
|
func (this *GroupPolicyInfo) Equal(that interface{}) bool {
|
|
if that == nil {
|
|
return this == nil
|
|
}
|
|
|
|
that1, ok := that.(*GroupPolicyInfo)
|
|
if !ok {
|
|
that2, ok := that.(GroupPolicyInfo)
|
|
if ok {
|
|
that1 = &that2
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
if that1 == nil {
|
|
return this == nil
|
|
} else if this == nil {
|
|
return false
|
|
}
|
|
if this.Address != that1.Address {
|
|
return false
|
|
}
|
|
if this.GroupId != that1.GroupId {
|
|
return false
|
|
}
|
|
if this.Admin != that1.Admin {
|
|
return false
|
|
}
|
|
if this.Metadata != that1.Metadata {
|
|
return false
|
|
}
|
|
if this.Version != that1.Version {
|
|
return false
|
|
}
|
|
if !this.DecisionPolicy.Equal(that1.DecisionPolicy) {
|
|
return false
|
|
}
|
|
if !this.CreatedAt.Equal(that1.CreatedAt) {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
func (m *Member) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *Member) MarshalTo(dAtA []byte) (int, error) {
|
|
size := m.Size()
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
}
|
|
|
|
func (m *Member) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
i := len(dAtA)
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
n1, err1 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.AddedAt, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.AddedAt):])
|
|
if err1 != nil {
|
|
return 0, err1
|
|
}
|
|
i -= n1
|
|
i = encodeVarintTypes(dAtA, i, uint64(n1))
|
|
i--
|
|
dAtA[i] = 0x22
|
|
if len(m.Metadata) > 0 {
|
|
i -= len(m.Metadata)
|
|
copy(dAtA[i:], m.Metadata)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Metadata)))
|
|
i--
|
|
dAtA[i] = 0x1a
|
|
}
|
|
if len(m.Weight) > 0 {
|
|
i -= len(m.Weight)
|
|
copy(dAtA[i:], m.Weight)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Weight)))
|
|
i--
|
|
dAtA[i] = 0x12
|
|
}
|
|
if len(m.Address) > 0 {
|
|
i -= len(m.Address)
|
|
copy(dAtA[i:], m.Address)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Address)))
|
|
i--
|
|
dAtA[i] = 0xa
|
|
}
|
|
return len(dAtA) - i, nil
|
|
}
|
|
|
|
func (m *MemberRequest) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *MemberRequest) MarshalTo(dAtA []byte) (int, error) {
|
|
size := m.Size()
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
}
|
|
|
|
func (m *MemberRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
i := len(dAtA)
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
if len(m.Metadata) > 0 {
|
|
i -= len(m.Metadata)
|
|
copy(dAtA[i:], m.Metadata)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Metadata)))
|
|
i--
|
|
dAtA[i] = 0x1a
|
|
}
|
|
if len(m.Weight) > 0 {
|
|
i -= len(m.Weight)
|
|
copy(dAtA[i:], m.Weight)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Weight)))
|
|
i--
|
|
dAtA[i] = 0x12
|
|
}
|
|
if len(m.Address) > 0 {
|
|
i -= len(m.Address)
|
|
copy(dAtA[i:], m.Address)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Address)))
|
|
i--
|
|
dAtA[i] = 0xa
|
|
}
|
|
return len(dAtA) - i, nil
|
|
}
|
|
|
|
func (m *ThresholdDecisionPolicy) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *ThresholdDecisionPolicy) MarshalTo(dAtA []byte) (int, error) {
|
|
size := m.Size()
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
}
|
|
|
|
func (m *ThresholdDecisionPolicy) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
i := len(dAtA)
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
if m.Windows != nil {
|
|
{
|
|
size, err := m.Windows.MarshalToSizedBuffer(dAtA[:i])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
i -= size
|
|
i = encodeVarintTypes(dAtA, i, uint64(size))
|
|
}
|
|
i--
|
|
dAtA[i] = 0x12
|
|
}
|
|
if len(m.Threshold) > 0 {
|
|
i -= len(m.Threshold)
|
|
copy(dAtA[i:], m.Threshold)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Threshold)))
|
|
i--
|
|
dAtA[i] = 0xa
|
|
}
|
|
return len(dAtA) - i, nil
|
|
}
|
|
|
|
func (m *PercentageDecisionPolicy) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *PercentageDecisionPolicy) MarshalTo(dAtA []byte) (int, error) {
|
|
size := m.Size()
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
}
|
|
|
|
func (m *PercentageDecisionPolicy) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
i := len(dAtA)
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
if m.Windows != nil {
|
|
{
|
|
size, err := m.Windows.MarshalToSizedBuffer(dAtA[:i])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
i -= size
|
|
i = encodeVarintTypes(dAtA, i, uint64(size))
|
|
}
|
|
i--
|
|
dAtA[i] = 0x12
|
|
}
|
|
if len(m.Percentage) > 0 {
|
|
i -= len(m.Percentage)
|
|
copy(dAtA[i:], m.Percentage)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Percentage)))
|
|
i--
|
|
dAtA[i] = 0xa
|
|
}
|
|
return len(dAtA) - i, nil
|
|
}
|
|
|
|
func (m *DecisionPolicyWindows) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *DecisionPolicyWindows) MarshalTo(dAtA []byte) (int, error) {
|
|
size := m.Size()
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
}
|
|
|
|
func (m *DecisionPolicyWindows) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
i := len(dAtA)
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
n4, err4 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.MinExecutionPeriod, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.MinExecutionPeriod):])
|
|
if err4 != nil {
|
|
return 0, err4
|
|
}
|
|
i -= n4
|
|
i = encodeVarintTypes(dAtA, i, uint64(n4))
|
|
i--
|
|
dAtA[i] = 0x12
|
|
n5, err5 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.VotingPeriod, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.VotingPeriod):])
|
|
if err5 != nil {
|
|
return 0, err5
|
|
}
|
|
i -= n5
|
|
i = encodeVarintTypes(dAtA, i, uint64(n5))
|
|
i--
|
|
dAtA[i] = 0xa
|
|
return len(dAtA) - i, nil
|
|
}
|
|
|
|
func (m *GroupInfo) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *GroupInfo) MarshalTo(dAtA []byte) (int, error) {
|
|
size := m.Size()
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
}
|
|
|
|
func (m *GroupInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
i := len(dAtA)
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
n6, err6 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.CreatedAt, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CreatedAt):])
|
|
if err6 != nil {
|
|
return 0, err6
|
|
}
|
|
i -= n6
|
|
i = encodeVarintTypes(dAtA, i, uint64(n6))
|
|
i--
|
|
dAtA[i] = 0x32
|
|
if len(m.TotalWeight) > 0 {
|
|
i -= len(m.TotalWeight)
|
|
copy(dAtA[i:], m.TotalWeight)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.TotalWeight)))
|
|
i--
|
|
dAtA[i] = 0x2a
|
|
}
|
|
if m.Version != 0 {
|
|
i = encodeVarintTypes(dAtA, i, uint64(m.Version))
|
|
i--
|
|
dAtA[i] = 0x20
|
|
}
|
|
if len(m.Metadata) > 0 {
|
|
i -= len(m.Metadata)
|
|
copy(dAtA[i:], m.Metadata)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Metadata)))
|
|
i--
|
|
dAtA[i] = 0x1a
|
|
}
|
|
if len(m.Admin) > 0 {
|
|
i -= len(m.Admin)
|
|
copy(dAtA[i:], m.Admin)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Admin)))
|
|
i--
|
|
dAtA[i] = 0x12
|
|
}
|
|
if m.Id != 0 {
|
|
i = encodeVarintTypes(dAtA, i, uint64(m.Id))
|
|
i--
|
|
dAtA[i] = 0x8
|
|
}
|
|
return len(dAtA) - i, nil
|
|
}
|
|
|
|
func (m *GroupMember) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *GroupMember) MarshalTo(dAtA []byte) (int, error) {
|
|
size := m.Size()
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
}
|
|
|
|
func (m *GroupMember) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
i := len(dAtA)
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
if m.Member != nil {
|
|
{
|
|
size, err := m.Member.MarshalToSizedBuffer(dAtA[:i])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
i -= size
|
|
i = encodeVarintTypes(dAtA, i, uint64(size))
|
|
}
|
|
i--
|
|
dAtA[i] = 0x12
|
|
}
|
|
if m.GroupId != 0 {
|
|
i = encodeVarintTypes(dAtA, i, uint64(m.GroupId))
|
|
i--
|
|
dAtA[i] = 0x8
|
|
}
|
|
return len(dAtA) - i, nil
|
|
}
|
|
|
|
func (m *GroupPolicyInfo) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *GroupPolicyInfo) MarshalTo(dAtA []byte) (int, error) {
|
|
size := m.Size()
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
}
|
|
|
|
func (m *GroupPolicyInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
i := len(dAtA)
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
n8, err8 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.CreatedAt, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CreatedAt):])
|
|
if err8 != nil {
|
|
return 0, err8
|
|
}
|
|
i -= n8
|
|
i = encodeVarintTypes(dAtA, i, uint64(n8))
|
|
i--
|
|
dAtA[i] = 0x3a
|
|
if m.DecisionPolicy != nil {
|
|
{
|
|
size, err := m.DecisionPolicy.MarshalToSizedBuffer(dAtA[:i])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
i -= size
|
|
i = encodeVarintTypes(dAtA, i, uint64(size))
|
|
}
|
|
i--
|
|
dAtA[i] = 0x32
|
|
}
|
|
if m.Version != 0 {
|
|
i = encodeVarintTypes(dAtA, i, uint64(m.Version))
|
|
i--
|
|
dAtA[i] = 0x28
|
|
}
|
|
if len(m.Metadata) > 0 {
|
|
i -= len(m.Metadata)
|
|
copy(dAtA[i:], m.Metadata)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Metadata)))
|
|
i--
|
|
dAtA[i] = 0x22
|
|
}
|
|
if len(m.Admin) > 0 {
|
|
i -= len(m.Admin)
|
|
copy(dAtA[i:], m.Admin)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Admin)))
|
|
i--
|
|
dAtA[i] = 0x1a
|
|
}
|
|
if m.GroupId != 0 {
|
|
i = encodeVarintTypes(dAtA, i, uint64(m.GroupId))
|
|
i--
|
|
dAtA[i] = 0x10
|
|
}
|
|
if len(m.Address) > 0 {
|
|
i -= len(m.Address)
|
|
copy(dAtA[i:], m.Address)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Address)))
|
|
i--
|
|
dAtA[i] = 0xa
|
|
}
|
|
return len(dAtA) - i, nil
|
|
}
|
|
|
|
func (m *Proposal) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *Proposal) MarshalTo(dAtA []byte) (int, error) {
|
|
size := m.Size()
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
}
|
|
|
|
func (m *Proposal) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
i := len(dAtA)
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
if len(m.Messages) > 0 {
|
|
for iNdEx := len(m.Messages) - 1; iNdEx >= 0; iNdEx-- {
|
|
{
|
|
size, err := m.Messages[iNdEx].MarshalToSizedBuffer(dAtA[:i])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
i -= size
|
|
i = encodeVarintTypes(dAtA, i, uint64(size))
|
|
}
|
|
i--
|
|
dAtA[i] = 0x62
|
|
}
|
|
}
|
|
if m.ExecutorResult != 0 {
|
|
i = encodeVarintTypes(dAtA, i, uint64(m.ExecutorResult))
|
|
i--
|
|
dAtA[i] = 0x58
|
|
}
|
|
n10, err10 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.VotingPeriodEnd, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.VotingPeriodEnd):])
|
|
if err10 != nil {
|
|
return 0, err10
|
|
}
|
|
i -= n10
|
|
i = encodeVarintTypes(dAtA, i, uint64(n10))
|
|
i--
|
|
dAtA[i] = 0x52
|
|
{
|
|
size, err := m.FinalTallyResult.MarshalToSizedBuffer(dAtA[:i])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
i -= size
|
|
i = encodeVarintTypes(dAtA, i, uint64(size))
|
|
}
|
|
i--
|
|
dAtA[i] = 0x4a
|
|
if m.Status != 0 {
|
|
i = encodeVarintTypes(dAtA, i, uint64(m.Status))
|
|
i--
|
|
dAtA[i] = 0x40
|
|
}
|
|
if m.GroupPolicyVersion != 0 {
|
|
i = encodeVarintTypes(dAtA, i, uint64(m.GroupPolicyVersion))
|
|
i--
|
|
dAtA[i] = 0x38
|
|
}
|
|
if m.GroupVersion != 0 {
|
|
i = encodeVarintTypes(dAtA, i, uint64(m.GroupVersion))
|
|
i--
|
|
dAtA[i] = 0x30
|
|
}
|
|
n12, err12 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.SubmitTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.SubmitTime):])
|
|
if err12 != nil {
|
|
return 0, err12
|
|
}
|
|
i -= n12
|
|
i = encodeVarintTypes(dAtA, i, uint64(n12))
|
|
i--
|
|
dAtA[i] = 0x2a
|
|
if len(m.Proposers) > 0 {
|
|
for iNdEx := len(m.Proposers) - 1; iNdEx >= 0; iNdEx-- {
|
|
i -= len(m.Proposers[iNdEx])
|
|
copy(dAtA[i:], m.Proposers[iNdEx])
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Proposers[iNdEx])))
|
|
i--
|
|
dAtA[i] = 0x22
|
|
}
|
|
}
|
|
if len(m.Metadata) > 0 {
|
|
i -= len(m.Metadata)
|
|
copy(dAtA[i:], m.Metadata)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Metadata)))
|
|
i--
|
|
dAtA[i] = 0x1a
|
|
}
|
|
if len(m.GroupPolicyAddress) > 0 {
|
|
i -= len(m.GroupPolicyAddress)
|
|
copy(dAtA[i:], m.GroupPolicyAddress)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.GroupPolicyAddress)))
|
|
i--
|
|
dAtA[i] = 0x12
|
|
}
|
|
if m.Id != 0 {
|
|
i = encodeVarintTypes(dAtA, i, uint64(m.Id))
|
|
i--
|
|
dAtA[i] = 0x8
|
|
}
|
|
return len(dAtA) - i, nil
|
|
}
|
|
|
|
func (m *TallyResult) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *TallyResult) MarshalTo(dAtA []byte) (int, error) {
|
|
size := m.Size()
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
}
|
|
|
|
func (m *TallyResult) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
i := len(dAtA)
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
if len(m.NoWithVetoCount) > 0 {
|
|
i -= len(m.NoWithVetoCount)
|
|
copy(dAtA[i:], m.NoWithVetoCount)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.NoWithVetoCount)))
|
|
i--
|
|
dAtA[i] = 0x22
|
|
}
|
|
if len(m.NoCount) > 0 {
|
|
i -= len(m.NoCount)
|
|
copy(dAtA[i:], m.NoCount)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.NoCount)))
|
|
i--
|
|
dAtA[i] = 0x1a
|
|
}
|
|
if len(m.AbstainCount) > 0 {
|
|
i -= len(m.AbstainCount)
|
|
copy(dAtA[i:], m.AbstainCount)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.AbstainCount)))
|
|
i--
|
|
dAtA[i] = 0x12
|
|
}
|
|
if len(m.YesCount) > 0 {
|
|
i -= len(m.YesCount)
|
|
copy(dAtA[i:], m.YesCount)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.YesCount)))
|
|
i--
|
|
dAtA[i] = 0xa
|
|
}
|
|
return len(dAtA) - i, nil
|
|
}
|
|
|
|
func (m *Vote) Marshal() (dAtA []byte, err error) {
|
|
size := m.Size()
|
|
dAtA = make([]byte, size)
|
|
n, err := m.MarshalToSizedBuffer(dAtA[:size])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return dAtA[:n], nil
|
|
}
|
|
|
|
func (m *Vote) MarshalTo(dAtA []byte) (int, error) {
|
|
size := m.Size()
|
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
|
}
|
|
|
|
func (m *Vote) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
i := len(dAtA)
|
|
_ = i
|
|
var l int
|
|
_ = l
|
|
n13, err13 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.SubmitTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.SubmitTime):])
|
|
if err13 != nil {
|
|
return 0, err13
|
|
}
|
|
i -= n13
|
|
i = encodeVarintTypes(dAtA, i, uint64(n13))
|
|
i--
|
|
dAtA[i] = 0x2a
|
|
if len(m.Metadata) > 0 {
|
|
i -= len(m.Metadata)
|
|
copy(dAtA[i:], m.Metadata)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Metadata)))
|
|
i--
|
|
dAtA[i] = 0x22
|
|
}
|
|
if m.Option != 0 {
|
|
i = encodeVarintTypes(dAtA, i, uint64(m.Option))
|
|
i--
|
|
dAtA[i] = 0x18
|
|
}
|
|
if len(m.Voter) > 0 {
|
|
i -= len(m.Voter)
|
|
copy(dAtA[i:], m.Voter)
|
|
i = encodeVarintTypes(dAtA, i, uint64(len(m.Voter)))
|
|
i--
|
|
dAtA[i] = 0x12
|
|
}
|
|
if m.ProposalId != 0 {
|
|
i = encodeVarintTypes(dAtA, i, uint64(m.ProposalId))
|
|
i--
|
|
dAtA[i] = 0x8
|
|
}
|
|
return len(dAtA) - i, nil
|
|
}
|
|
|
|
func encodeVarintTypes(dAtA []byte, offset int, v uint64) int {
|
|
offset -= sovTypes(v)
|
|
base := offset
|
|
for v >= 1<<7 {
|
|
dAtA[offset] = uint8(v&0x7f | 0x80)
|
|
v >>= 7
|
|
offset++
|
|
}
|
|
dAtA[offset] = uint8(v)
|
|
return base
|
|
}
|
|
func (m *Member) Size() (n int) {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
var l int
|
|
_ = l
|
|
l = len(m.Address)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = len(m.Weight)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = len(m.Metadata)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.AddedAt)
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
return n
|
|
}
|
|
|
|
func (m *MemberRequest) Size() (n int) {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
var l int
|
|
_ = l
|
|
l = len(m.Address)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = len(m.Weight)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = len(m.Metadata)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (m *ThresholdDecisionPolicy) Size() (n int) {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
var l int
|
|
_ = l
|
|
l = len(m.Threshold)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
if m.Windows != nil {
|
|
l = m.Windows.Size()
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (m *PercentageDecisionPolicy) Size() (n int) {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
var l int
|
|
_ = l
|
|
l = len(m.Percentage)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
if m.Windows != nil {
|
|
l = m.Windows.Size()
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (m *DecisionPolicyWindows) Size() (n int) {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
var l int
|
|
_ = l
|
|
l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.VotingPeriod)
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.MinExecutionPeriod)
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
return n
|
|
}
|
|
|
|
func (m *GroupInfo) Size() (n int) {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
var l int
|
|
_ = l
|
|
if m.Id != 0 {
|
|
n += 1 + sovTypes(uint64(m.Id))
|
|
}
|
|
l = len(m.Admin)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = len(m.Metadata)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
if m.Version != 0 {
|
|
n += 1 + sovTypes(uint64(m.Version))
|
|
}
|
|
l = len(m.TotalWeight)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CreatedAt)
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
return n
|
|
}
|
|
|
|
func (m *GroupMember) Size() (n int) {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
var l int
|
|
_ = l
|
|
if m.GroupId != 0 {
|
|
n += 1 + sovTypes(uint64(m.GroupId))
|
|
}
|
|
if m.Member != nil {
|
|
l = m.Member.Size()
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (m *GroupPolicyInfo) Size() (n int) {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
var l int
|
|
_ = l
|
|
l = len(m.Address)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
if m.GroupId != 0 {
|
|
n += 1 + sovTypes(uint64(m.GroupId))
|
|
}
|
|
l = len(m.Admin)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = len(m.Metadata)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
if m.Version != 0 {
|
|
n += 1 + sovTypes(uint64(m.Version))
|
|
}
|
|
if m.DecisionPolicy != nil {
|
|
l = m.DecisionPolicy.Size()
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CreatedAt)
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
return n
|
|
}
|
|
|
|
func (m *Proposal) Size() (n int) {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
var l int
|
|
_ = l
|
|
if m.Id != 0 {
|
|
n += 1 + sovTypes(uint64(m.Id))
|
|
}
|
|
l = len(m.GroupPolicyAddress)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = len(m.Metadata)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
if len(m.Proposers) > 0 {
|
|
for _, s := range m.Proposers {
|
|
l = len(s)
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
}
|
|
l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.SubmitTime)
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
if m.GroupVersion != 0 {
|
|
n += 1 + sovTypes(uint64(m.GroupVersion))
|
|
}
|
|
if m.GroupPolicyVersion != 0 {
|
|
n += 1 + sovTypes(uint64(m.GroupPolicyVersion))
|
|
}
|
|
if m.Status != 0 {
|
|
n += 1 + sovTypes(uint64(m.Status))
|
|
}
|
|
l = m.FinalTallyResult.Size()
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.VotingPeriodEnd)
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
if m.ExecutorResult != 0 {
|
|
n += 1 + sovTypes(uint64(m.ExecutorResult))
|
|
}
|
|
if len(m.Messages) > 0 {
|
|
for _, e := range m.Messages {
|
|
l = e.Size()
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (m *TallyResult) Size() (n int) {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
var l int
|
|
_ = l
|
|
l = len(m.YesCount)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = len(m.AbstainCount)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = len(m.NoCount)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = len(m.NoWithVetoCount)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (m *Vote) Size() (n int) {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
var l int
|
|
_ = l
|
|
if m.ProposalId != 0 {
|
|
n += 1 + sovTypes(uint64(m.ProposalId))
|
|
}
|
|
l = len(m.Voter)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
if m.Option != 0 {
|
|
n += 1 + sovTypes(uint64(m.Option))
|
|
}
|
|
l = len(m.Metadata)
|
|
if l > 0 {
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
}
|
|
l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.SubmitTime)
|
|
n += 1 + l + sovTypes(uint64(l))
|
|
return n
|
|
}
|
|
|
|
func sovTypes(x uint64) (n int) {
|
|
return (math_bits.Len64(x|1) + 6) / 7
|
|
}
|
|
func sozTypes(x uint64) (n int) {
|
|
return sovTypes(uint64((x << 1) ^ uint64((int64(x) >> 63))))
|
|
}
|
|
func (m *Member) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: Member: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: Member: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Address", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Address = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Weight", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Weight = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 3:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Metadata = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 4:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field AddedAt", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.AddedAt, dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipTypes(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *MemberRequest) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: MemberRequest: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: MemberRequest: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Address", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Address = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Weight", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Weight = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 3:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Metadata = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipTypes(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *ThresholdDecisionPolicy) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: ThresholdDecisionPolicy: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: ThresholdDecisionPolicy: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Threshold", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Threshold = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Windows", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if m.Windows == nil {
|
|
m.Windows = &DecisionPolicyWindows{}
|
|
}
|
|
if err := m.Windows.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipTypes(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *PercentageDecisionPolicy) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: PercentageDecisionPolicy: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: PercentageDecisionPolicy: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Percentage", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Percentage = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Windows", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if m.Windows == nil {
|
|
m.Windows = &DecisionPolicyWindows{}
|
|
}
|
|
if err := m.Windows.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipTypes(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *DecisionPolicyWindows) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: DecisionPolicyWindows: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: DecisionPolicyWindows: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field VotingPeriod", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if err := github_com_cosmos_gogoproto_types.StdDurationUnmarshal(&m.VotingPeriod, dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field MinExecutionPeriod", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if err := github_com_cosmos_gogoproto_types.StdDurationUnmarshal(&m.MinExecutionPeriod, dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipTypes(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *GroupInfo) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: GroupInfo: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: GroupInfo: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 0 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType)
|
|
}
|
|
m.Id = 0
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
m.Id |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Admin", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Admin = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 3:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Metadata = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 4:
|
|
if wireType != 0 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType)
|
|
}
|
|
m.Version = 0
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
m.Version |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
case 5:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field TotalWeight", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.TotalWeight = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 6:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field CreatedAt", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.CreatedAt, dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipTypes(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *GroupMember) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: GroupMember: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: GroupMember: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 0 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field GroupId", wireType)
|
|
}
|
|
m.GroupId = 0
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
m.GroupId |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Member", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if m.Member == nil {
|
|
m.Member = &Member{}
|
|
}
|
|
if err := m.Member.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipTypes(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *GroupPolicyInfo) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: GroupPolicyInfo: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: GroupPolicyInfo: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Address", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Address = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 2:
|
|
if wireType != 0 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field GroupId", wireType)
|
|
}
|
|
m.GroupId = 0
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
m.GroupId |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
case 3:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Admin", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Admin = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 4:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Metadata = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 5:
|
|
if wireType != 0 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType)
|
|
}
|
|
m.Version = 0
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
m.Version |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
case 6:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field DecisionPolicy", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if m.DecisionPolicy == nil {
|
|
m.DecisionPolicy = &types.Any{}
|
|
}
|
|
if err := m.DecisionPolicy.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
case 7:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field CreatedAt", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.CreatedAt, dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipTypes(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *Proposal) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: Proposal: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: Proposal: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 0 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Id", wireType)
|
|
}
|
|
m.Id = 0
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
m.Id |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field GroupPolicyAddress", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.GroupPolicyAddress = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 3:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Metadata = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 4:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Proposers", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Proposers = append(m.Proposers, string(dAtA[iNdEx:postIndex]))
|
|
iNdEx = postIndex
|
|
case 5:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field SubmitTime", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.SubmitTime, dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
case 6:
|
|
if wireType != 0 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field GroupVersion", wireType)
|
|
}
|
|
m.GroupVersion = 0
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
m.GroupVersion |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
case 7:
|
|
if wireType != 0 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field GroupPolicyVersion", wireType)
|
|
}
|
|
m.GroupPolicyVersion = 0
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
m.GroupPolicyVersion |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
case 8:
|
|
if wireType != 0 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType)
|
|
}
|
|
m.Status = 0
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
m.Status |= ProposalStatus(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
case 9:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field FinalTallyResult", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if err := m.FinalTallyResult.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
case 10:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field VotingPeriodEnd", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.VotingPeriodEnd, dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
case 11:
|
|
if wireType != 0 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field ExecutorResult", wireType)
|
|
}
|
|
m.ExecutorResult = 0
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
m.ExecutorResult |= ProposalExecutorResult(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
case 12:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Messages", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Messages = append(m.Messages, &types.Any{})
|
|
if err := m.Messages[len(m.Messages)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipTypes(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *TallyResult) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: TallyResult: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: TallyResult: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field YesCount", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.YesCount = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field AbstainCount", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.AbstainCount = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 3:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field NoCount", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.NoCount = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 4:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field NoWithVetoCount", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.NoWithVetoCount = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipTypes(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func (m *Vote) Unmarshal(dAtA []byte) error {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
for iNdEx < l {
|
|
preIndex := iNdEx
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
fieldNum := int32(wire >> 3)
|
|
wireType := int(wire & 0x7)
|
|
if wireType == 4 {
|
|
return fmt.Errorf("proto: Vote: wiretype end group for non-group")
|
|
}
|
|
if fieldNum <= 0 {
|
|
return fmt.Errorf("proto: Vote: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
}
|
|
switch fieldNum {
|
|
case 1:
|
|
if wireType != 0 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field ProposalId", wireType)
|
|
}
|
|
m.ProposalId = 0
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
m.ProposalId |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
case 2:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Voter", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Voter = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 3:
|
|
if wireType != 0 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Option", wireType)
|
|
}
|
|
m.Option = 0
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
m.Option |= VoteOption(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
case 4:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType)
|
|
}
|
|
var stringLen uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
stringLen |= uint64(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
intStringLen := int(stringLen)
|
|
if intStringLen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + intStringLen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
m.Metadata = string(dAtA[iNdEx:postIndex])
|
|
iNdEx = postIndex
|
|
case 5:
|
|
if wireType != 2 {
|
|
return fmt.Errorf("proto: wrong wireType = %d for field SubmitTime", wireType)
|
|
}
|
|
var msglen int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
msglen |= int(b&0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if msglen < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
postIndex := iNdEx + msglen
|
|
if postIndex < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if postIndex > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.SubmitTime, dAtA[iNdEx:postIndex]); err != nil {
|
|
return err
|
|
}
|
|
iNdEx = postIndex
|
|
default:
|
|
iNdEx = preIndex
|
|
skippy, err := skipTypes(dAtA[iNdEx:])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
|
return ErrInvalidLengthTypes
|
|
}
|
|
if (iNdEx + skippy) > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx += skippy
|
|
}
|
|
}
|
|
|
|
if iNdEx > l {
|
|
return io.ErrUnexpectedEOF
|
|
}
|
|
return nil
|
|
}
|
|
func skipTypes(dAtA []byte) (n int, err error) {
|
|
l := len(dAtA)
|
|
iNdEx := 0
|
|
depth := 0
|
|
for iNdEx < l {
|
|
var wire uint64
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return 0, ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return 0, io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
wire |= (uint64(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
wireType := int(wire & 0x7)
|
|
switch wireType {
|
|
case 0:
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return 0, ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return 0, io.ErrUnexpectedEOF
|
|
}
|
|
iNdEx++
|
|
if dAtA[iNdEx-1] < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
case 1:
|
|
iNdEx += 8
|
|
case 2:
|
|
var length int
|
|
for shift := uint(0); ; shift += 7 {
|
|
if shift >= 64 {
|
|
return 0, ErrIntOverflowTypes
|
|
}
|
|
if iNdEx >= l {
|
|
return 0, io.ErrUnexpectedEOF
|
|
}
|
|
b := dAtA[iNdEx]
|
|
iNdEx++
|
|
length |= (int(b) & 0x7F) << shift
|
|
if b < 0x80 {
|
|
break
|
|
}
|
|
}
|
|
if length < 0 {
|
|
return 0, ErrInvalidLengthTypes
|
|
}
|
|
iNdEx += length
|
|
case 3:
|
|
depth++
|
|
case 4:
|
|
if depth == 0 {
|
|
return 0, ErrUnexpectedEndOfGroupTypes
|
|
}
|
|
depth--
|
|
case 5:
|
|
iNdEx += 4
|
|
default:
|
|
return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
|
|
}
|
|
if iNdEx < 0 {
|
|
return 0, ErrInvalidLengthTypes
|
|
}
|
|
if depth == 0 {
|
|
return iNdEx, nil
|
|
}
|
|
}
|
|
return 0, io.ErrUnexpectedEOF
|
|
}
|
|
|
|
var (
|
|
ErrInvalidLengthTypes = fmt.Errorf("proto: negative length found during unmarshaling")
|
|
ErrIntOverflowTypes = fmt.Errorf("proto: integer overflow")
|
|
ErrUnexpectedEndOfGroupTypes = fmt.Errorf("proto: unexpected end of group")
|
|
)
|