mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-07 06:36:42 +00:00
92 implement pop result handler (#101)
* ignite scaffold message report-pop-result challenge:Challenge --module dao * add issuePoPRewards and fix typo * add util validate struct and report pop test cases * add TODOs * replace depricated error * fix broken import * add error handler for failed pop issuance * add placeholder for validator is issuer check * added changed go.mod and go.sum * generate docs * reduce cognitive complexity --------- Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com> Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> Co-authored-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
parent
6ef5e3c803
commit
a5cea30e26
@ -4,6 +4,7 @@ import (
|
|||||||
errorsmod "cosmossdk.io/errors"
|
errorsmod "cosmossdk.io/errors"
|
||||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||||
assettypes "github.com/planetmint/planetmint-go/x/asset/types"
|
assettypes "github.com/planetmint/planetmint-go/x/asset/types"
|
||||||
|
daotypes "github.com/planetmint/planetmint-go/x/dao/types"
|
||||||
machinetypes "github.com/planetmint/planetmint-go/x/machine/types"
|
machinetypes "github.com/planetmint/planetmint-go/x/machine/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -17,35 +18,62 @@ func NewCheckMachineDecorator(mk MachineKeeper) CheckMachineDecorator {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (cm CheckMachineDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bool, next sdk.AnteHandler) (sdk.Context, error) {
|
func (cm CheckMachineDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bool, next sdk.AnteHandler) (_ sdk.Context, err error) {
|
||||||
for _, msg := range tx.GetMsgs() {
|
for _, msg := range tx.GetMsgs() {
|
||||||
switch sdk.MsgTypeURL(msg) {
|
switch sdk.MsgTypeURL(msg) {
|
||||||
case "/planetmintgo.asset.MsgNotarizeAsset":
|
case "/planetmintgo.asset.MsgNotarizeAsset":
|
||||||
notarizeMsg, ok := msg.(*assettypes.MsgNotarizeAsset)
|
notarizeMsg, ok := msg.(*assettypes.MsgNotarizeAsset)
|
||||||
if ok {
|
if ok {
|
||||||
_, found := cm.mk.GetMachineIndexByAddress(ctx, notarizeMsg.GetCreator())
|
ctx, err = cm.handleNotarizeAsset(ctx, notarizeMsg)
|
||||||
if !found {
|
|
||||||
return ctx, errorsmod.Wrapf(machinetypes.ErrMachineNotFound, "error during CheckTx or ReCheckTx")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
case "/planetmintgo.machine.MsgAttestMachine":
|
case "/planetmintgo.machine.MsgAttestMachine":
|
||||||
attestMsg, ok := msg.(*machinetypes.MsgAttestMachine)
|
attestMsg, ok := msg.(*machinetypes.MsgAttestMachine)
|
||||||
if ok {
|
if ok {
|
||||||
if attestMsg.GetCreator() != attestMsg.Machine.GetAddress() {
|
ctx, err = cm.handleAttestMachine(ctx, attestMsg)
|
||||||
return ctx, errorsmod.Wrapf(machinetypes.ErrMachineIsNotCreator, "error during CheckTx or ReCheckTx")
|
}
|
||||||
}
|
case "planetmintgo.dao.MsgReportPoPResult":
|
||||||
_, activated, found := cm.mk.GetTrustAnchor(ctx, attestMsg.Machine.MachineId)
|
popMsg, ok := msg.(*daotypes.MsgReportPopResult)
|
||||||
if !found {
|
if ok {
|
||||||
return ctx, errorsmod.Wrapf(machinetypes.ErrTrustAnchorNotFound, "error during CheckTx or ReCheckTx")
|
ctx, err = cm.handlePopResult(ctx, popMsg)
|
||||||
}
|
|
||||||
if activated {
|
|
||||||
return ctx, errorsmod.Wrapf(machinetypes.ErrTrustAnchorAlreadyInUse, "error during CheckTx or ReCheckTx")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
return ctx, err
|
||||||
|
}
|
||||||
|
|
||||||
return next(ctx, tx, simulate)
|
return next(ctx, tx, simulate)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (cm CheckMachineDecorator) handleNotarizeAsset(ctx sdk.Context, notarizeMsg *assettypes.MsgNotarizeAsset) (sdk.Context, error) {
|
||||||
|
_, found := cm.mk.GetMachineIndexByAddress(ctx, notarizeMsg.GetCreator())
|
||||||
|
if !found {
|
||||||
|
return ctx, errorsmod.Wrapf(machinetypes.ErrMachineNotFound, "error during CheckTx or ReCheckTx")
|
||||||
|
}
|
||||||
|
return ctx, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (cm CheckMachineDecorator) handleAttestMachine(ctx sdk.Context, attestMsg *machinetypes.MsgAttestMachine) (sdk.Context, error) {
|
||||||
|
if attestMsg.GetCreator() != attestMsg.Machine.GetAddress() {
|
||||||
|
return ctx, errorsmod.Wrapf(machinetypes.ErrMachineIsNotCreator, "error during CheckTx or ReCheckTx")
|
||||||
|
}
|
||||||
|
_, activated, found := cm.mk.GetTrustAnchor(ctx, attestMsg.Machine.MachineId)
|
||||||
|
if !found {
|
||||||
|
return ctx, errorsmod.Wrapf(machinetypes.ErrTrustAnchorNotFound, "error during CheckTx or ReCheckTx")
|
||||||
|
}
|
||||||
|
if activated {
|
||||||
|
return ctx, errorsmod.Wrapf(machinetypes.ErrTrustAnchorAlreadyInUse, "error during CheckTx or ReCheckTx")
|
||||||
|
}
|
||||||
|
return ctx, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (cm CheckMachineDecorator) handlePopResult(ctx sdk.Context, popMsg *daotypes.MsgReportPopResult) (sdk.Context, error) {
|
||||||
|
_, found := cm.mk.GetMachineIndexByAddress(ctx, popMsg.GetCreator())
|
||||||
|
if !found {
|
||||||
|
return ctx, errorsmod.Wrapf(machinetypes.ErrMachineNotFound, "error during CheckTx or ReCheckTx")
|
||||||
|
}
|
||||||
|
return ctx, nil
|
||||||
|
}
|
||||||
|
18
docs/static/openapi.yml
vendored
18
docs/static/openapi.yml
vendored
@ -75967,6 +75967,22 @@ definitions:
|
|||||||
description: params holds all the parameters of this module.
|
description: params holds all the parameters of this module.
|
||||||
type: object
|
type: object
|
||||||
description: QueryParamsResponse is response type for the Query/Params RPC method.
|
description: QueryParamsResponse is response type for the Query/Params RPC method.
|
||||||
|
planetmintgo.dao.Challenge:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
initiator:
|
||||||
|
type: string
|
||||||
|
challenger:
|
||||||
|
type: string
|
||||||
|
challengee:
|
||||||
|
type: string
|
||||||
|
height:
|
||||||
|
type: string
|
||||||
|
format: uint64
|
||||||
|
success:
|
||||||
|
type: boolean
|
||||||
|
description:
|
||||||
|
type: string
|
||||||
planetmintgo.dao.DistributionOrder:
|
planetmintgo.dao.DistributionOrder:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
@ -76031,6 +76047,8 @@ definitions:
|
|||||||
type: object
|
type: object
|
||||||
planetmintgo.dao.MsgReissueRDDLResultResponse:
|
planetmintgo.dao.MsgReissueRDDLResultResponse:
|
||||||
type: object
|
type: object
|
||||||
|
planetmintgo.dao.MsgReportPopResultResponse:
|
||||||
|
type: object
|
||||||
planetmintgo.dao.MsgUpdateParamsResponse:
|
planetmintgo.dao.MsgUpdateParamsResponse:
|
||||||
type: object
|
type: object
|
||||||
planetmintgo.dao.Params:
|
planetmintgo.dao.Params:
|
||||||
|
@ -7,7 +7,7 @@ message Challenge {
|
|||||||
|
|
||||||
string initiator = 1;
|
string initiator = 1;
|
||||||
string challenger = 2;
|
string challenger = 2;
|
||||||
string challangee = 3;
|
string challengee = 3;
|
||||||
uint64 height = 4;
|
uint64 height = 4;
|
||||||
bool success = 5;
|
bool success = 5;
|
||||||
string description = 6;
|
string description = 6;
|
||||||
|
@ -2,6 +2,7 @@ syntax = "proto3";
|
|||||||
|
|
||||||
package planetmintgo.dao;
|
package planetmintgo.dao;
|
||||||
|
|
||||||
|
import "planetmintgo/dao/challenge.proto";
|
||||||
import "planetmintgo/dao/mint_request.proto";
|
import "planetmintgo/dao/mint_request.proto";
|
||||||
import "planetmintgo/dao/distribution_order.proto";
|
import "planetmintgo/dao/distribution_order.proto";
|
||||||
import "planetmintgo/dao/params.proto";
|
import "planetmintgo/dao/params.proto";
|
||||||
@ -18,9 +19,17 @@ service Msg {
|
|||||||
rpc MintToken (MsgMintToken ) returns (MsgMintTokenResponse );
|
rpc MintToken (MsgMintToken ) returns (MsgMintTokenResponse );
|
||||||
rpc ReissueRDDLResult (MsgReissueRDDLResult ) returns (MsgReissueRDDLResultResponse );
|
rpc ReissueRDDLResult (MsgReissueRDDLResult ) returns (MsgReissueRDDLResultResponse );
|
||||||
rpc DistributionResult (MsgDistributionResult ) returns (MsgDistributionResultResponse );
|
rpc DistributionResult (MsgDistributionResult ) returns (MsgDistributionResultResponse );
|
||||||
rpc DistributionRequest (MsgDistributionRequest) returns (MsgDistributionRequestResponse);
|
rpc DistributionRequest (MsgDistributionRequest) returns (MsgDistributionRequestResponse);
|
||||||
rpc UpdateParams (MsgUpdateParams ) returns (MsgUpdateParamsResponse );
|
rpc UpdateParams (MsgUpdateParams ) returns (MsgUpdateParamsResponse );
|
||||||
|
rpc ReportPopResult (MsgReportPopResult) returns (MsgReportPopResultResponse);
|
||||||
}
|
}
|
||||||
|
message MsgReportPopResult {
|
||||||
|
string creator = 1;
|
||||||
|
Challenge challenge = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message MsgReportPopResultResponse {}
|
||||||
|
|
||||||
message MsgReissueRDDLProposal {
|
message MsgReissueRDDLProposal {
|
||||||
string creator = 1;
|
string creator = 1;
|
||||||
string proposer = 2;
|
string proposer = 2;
|
||||||
|
36
util/validate_struct.go
Normal file
36
util/validate_struct.go
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
package util
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"reflect"
|
||||||
|
)
|
||||||
|
|
||||||
|
func ValidateStruct(s interface{}) (err error) {
|
||||||
|
structType := reflect.TypeOf(s)
|
||||||
|
kind := structType.Kind()
|
||||||
|
if kind != reflect.Struct {
|
||||||
|
return errors.New("input param should be a struct")
|
||||||
|
}
|
||||||
|
|
||||||
|
structVal := reflect.ValueOf(s)
|
||||||
|
fieldNum := structVal.NumField()
|
||||||
|
|
||||||
|
for i := 0; i < fieldNum; i++ {
|
||||||
|
field := structVal.Field(i)
|
||||||
|
fieldName := structType.Field(i).Name
|
||||||
|
|
||||||
|
isSet := field.IsValid() && !field.IsZero()
|
||||||
|
|
||||||
|
// Set to true because bool is always set (i.e. defaults to true)
|
||||||
|
if field.Type().Kind() == reflect.Bool {
|
||||||
|
isSet = true
|
||||||
|
}
|
||||||
|
|
||||||
|
if !isSet {
|
||||||
|
return fmt.Errorf("%s is not set", fieldName)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
@ -25,6 +25,7 @@ func GetTxCmd() *cobra.Command {
|
|||||||
RunE: client.ValidateCmd,
|
RunE: client.ValidateCmd,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cmd.AddCommand(CmdReportPopResult())
|
||||||
cmd.AddCommand(CmdReissueRDDLProposal())
|
cmd.AddCommand(CmdReissueRDDLProposal())
|
||||||
cmd.AddCommand(CmdMintToken())
|
cmd.AddCommand(CmdMintToken())
|
||||||
cmd.AddCommand(CmdReissueRDDLResult())
|
cmd.AddCommand(CmdReissueRDDLResult())
|
||||||
|
47
x/dao/client/cli/tx_report_pop_result.go
Normal file
47
x/dao/client/cli/tx_report_pop_result.go
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
package cli
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strconv"
|
||||||
|
|
||||||
|
"encoding/json"
|
||||||
|
"github.com/cosmos/cosmos-sdk/client"
|
||||||
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
||||||
|
"github.com/cosmos/cosmos-sdk/client/tx"
|
||||||
|
"github.com/planetmint/planetmint-go/x/dao/types"
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
)
|
||||||
|
|
||||||
|
var _ = strconv.Itoa(0)
|
||||||
|
|
||||||
|
func CmdReportPopResult() *cobra.Command {
|
||||||
|
cmd := &cobra.Command{
|
||||||
|
Use: "report-pop-result [challenge]",
|
||||||
|
Short: "Broadcast message report-pop-result",
|
||||||
|
Args: cobra.ExactArgs(1),
|
||||||
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
||||||
|
argChallenge := new(types.Challenge)
|
||||||
|
err = json.Unmarshal([]byte(args[0]), argChallenge)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
clientCtx, err := client.GetClientTxContext(cmd)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
msg := types.NewMsgReportPopResult(
|
||||||
|
clientCtx.GetFromAddress().String(),
|
||||||
|
argChallenge,
|
||||||
|
)
|
||||||
|
if err := msg.ValidateBasic(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
flags.AddTxFlagsToCmd(cmd)
|
||||||
|
|
||||||
|
return cmd
|
||||||
|
}
|
@ -17,8 +17,8 @@ func createNChallenge(keeper *keeper.Keeper, ctx sdk.Context, n int) []types.Cha
|
|||||||
for i := range items {
|
for i := range items {
|
||||||
items[i].Height = uint64(i)
|
items[i].Height = uint64(i)
|
||||||
items[i].Initiator = fmt.Sprintf("initiator%v", i)
|
items[i].Initiator = fmt.Sprintf("initiator%v", i)
|
||||||
items[i].Challenger = fmt.Sprintf("challanger%v", i)
|
items[i].Challenger = fmt.Sprintf("challenger%v", i)
|
||||||
items[i].Challangee = fmt.Sprintf("challangee%v", i)
|
items[i].Challengee = fmt.Sprintf("challengee%v", i)
|
||||||
items[i].Success = true
|
items[i].Success = true
|
||||||
items[i].Description = fmt.Sprintf("expected %v got %v", i, i)
|
items[i].Description = fmt.Sprintf("expected %v got %v", i, i)
|
||||||
keeper.StoreChallenge(ctx, items[i])
|
keeper.StoreChallenge(ctx, items[i])
|
||||||
|
50
x/dao/keeper/msg_server_report_pop_result.go
Normal file
50
x/dao/keeper/msg_server_report_pop_result.go
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
package keeper
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
errorsmod "cosmossdk.io/errors"
|
||||||
|
|
||||||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||||
|
"github.com/planetmint/planetmint-go/util"
|
||||||
|
"github.com/planetmint/planetmint-go/x/dao/types"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (k msgServer) ReportPopResult(goCtx context.Context, msg *types.MsgReportPopResult) (*types.MsgReportPopResultResponse, error) {
|
||||||
|
ctx := sdk.UnwrapSDKContext(goCtx)
|
||||||
|
|
||||||
|
err := util.ValidateStruct(*msg.Challenge)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errorsmod.Wrapf(types.ErrInvalidChallenge, err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
if isInitiator(*msg.Challenge) {
|
||||||
|
err = k.issuePoPRewards(*msg.Challenge)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errorsmod.Wrapf(types.ErrFailedPoPRewardsIssuance, err.Error())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
k.StoreChallenge(ctx, *msg.Challenge)
|
||||||
|
|
||||||
|
return &types.MsgReportPopResultResponse{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: ensuer issuePoPrewards is only called once per PoP on all validators
|
||||||
|
func (k msgServer) issuePoPRewards(_ types.Challenge) (err error) {
|
||||||
|
//cfg := config.GetConfig()
|
||||||
|
//client := osc.NewClient(cfg.WatchmenEndpoint, 1234)
|
||||||
|
|
||||||
|
// TODO: finalize message and endpoint
|
||||||
|
//msg := osc.NewMessage("/rddl/token")
|
||||||
|
//msg.Append(challenge.Challenger)
|
||||||
|
//msg.Append(challenge.Challengee)
|
||||||
|
//err := client.Send(msg)
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: implement check if node is responsible for triggering issuance
|
||||||
|
func isInitiator(_ types.Challenge) bool {
|
||||||
|
return false
|
||||||
|
}
|
@ -25,6 +25,74 @@ func TestMsgServer(t *testing.T) {
|
|||||||
require.NotNil(t, ctx)
|
require.NotNil(t, ctx)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestMsgServerReportPoPResult(t *testing.T) {
|
||||||
|
initiator := sample.Secp256k1AccAddress()
|
||||||
|
challenger := sample.Secp256k1AccAddress()
|
||||||
|
challengee := sample.Secp256k1AccAddress()
|
||||||
|
description := "sample text"
|
||||||
|
|
||||||
|
testCases := []struct {
|
||||||
|
name string
|
||||||
|
msg types.MsgReportPopResult
|
||||||
|
errMsg string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
"report pop result",
|
||||||
|
types.MsgReportPopResult{
|
||||||
|
Creator: challenger.String(),
|
||||||
|
Challenge: &types.Challenge{
|
||||||
|
Initiator: initiator.String(),
|
||||||
|
Challenger: challenger.String(),
|
||||||
|
Challengee: challengee.String(),
|
||||||
|
Height: 1,
|
||||||
|
Description: description,
|
||||||
|
Success: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"success not set",
|
||||||
|
types.MsgReportPopResult{
|
||||||
|
Creator: challenger.String(),
|
||||||
|
Challenge: &types.Challenge{
|
||||||
|
Initiator: initiator.String(),
|
||||||
|
Challenger: challenger.String(),
|
||||||
|
Challengee: challengee.String(),
|
||||||
|
Height: 1,
|
||||||
|
Description: description,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"", // no error because Go defaults bool to false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"initiator not set",
|
||||||
|
types.MsgReportPopResult{
|
||||||
|
Creator: challenger.String(),
|
||||||
|
Challenge: &types.Challenge{
|
||||||
|
Challenger: challenger.String(),
|
||||||
|
Challengee: challengee.String(),
|
||||||
|
Height: 1,
|
||||||
|
Description: description,
|
||||||
|
Success: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"Initiator is not set: invalid challenge",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
msgServer, ctx := setupMsgServer(t)
|
||||||
|
|
||||||
|
for _, tc := range testCases {
|
||||||
|
res, err := msgServer.ReportPopResult(ctx, &tc.msg)
|
||||||
|
|
||||||
|
if tc.errMsg != "" {
|
||||||
|
assert.EqualError(t, err, tc.errMsg)
|
||||||
|
} else {
|
||||||
|
assert.Equal(t, &types.MsgReportPopResultResponse{}, res)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
func TestMsgServerMintToken(t *testing.T) {
|
func TestMsgServerMintToken(t *testing.T) {
|
||||||
minter := sample.AccAddress()
|
minter := sample.AccAddress()
|
||||||
beneficiary := sample.ConstBech32Addr
|
beneficiary := sample.ConstBech32Addr
|
||||||
|
@ -24,7 +24,10 @@ var (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
opWeightMsgReissueRDDLProposal = "op_weight_msg_reissue_rddl_proposal"
|
opWeightMsgReportPopResult = "op_weight_msg_report_pop_result"
|
||||||
|
// TODO: Determine the simulation weight value
|
||||||
|
defaultWeightMsgReportPopResult int = 100
|
||||||
|
opWeightMsgReissueRDDLProposal = "op_weight_msg_reissue_rddl_proposal"
|
||||||
// TODO: Determine the simulation weight value
|
// TODO: Determine the simulation weight value
|
||||||
defaultWeightMsgReissueRDDLProposal int = 100
|
defaultWeightMsgReissueRDDLProposal int = 100
|
||||||
|
|
||||||
@ -60,6 +63,17 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP
|
|||||||
func (am AppModule) WeightedOperations(simState module.SimulationState) []simtypes.WeightedOperation {
|
func (am AppModule) WeightedOperations(simState module.SimulationState) []simtypes.WeightedOperation {
|
||||||
operations := make([]simtypes.WeightedOperation, 0)
|
operations := make([]simtypes.WeightedOperation, 0)
|
||||||
|
|
||||||
|
var weightMsgReportPopResult int
|
||||||
|
simState.AppParams.GetOrGenerate(simState.Cdc, opWeightMsgReportPopResult, &weightMsgReportPopResult, nil,
|
||||||
|
func(_ *rand.Rand) {
|
||||||
|
weightMsgReportPopResult = defaultWeightMsgReportPopResult
|
||||||
|
},
|
||||||
|
)
|
||||||
|
operations = append(operations, simulation.NewWeightedOperation(
|
||||||
|
weightMsgReportPopResult,
|
||||||
|
daosimulation.SimulateMsgReportPopResult(am.accountKeeper, am.bankKeeper, am.keeper),
|
||||||
|
))
|
||||||
|
|
||||||
var weightMsgReissueRDDLProposal int
|
var weightMsgReissueRDDLProposal int
|
||||||
simState.AppParams.GetOrGenerate(simState.Cdc, opWeightMsgReissueRDDLProposal, &weightMsgReissueRDDLProposal, nil,
|
simState.AppParams.GetOrGenerate(simState.Cdc, opWeightMsgReissueRDDLProposal, &weightMsgReissueRDDLProposal, nil,
|
||||||
func(_ *rand.Rand) {
|
func(_ *rand.Rand) {
|
||||||
@ -90,6 +104,14 @@ func (am AppModule) WeightedOperations(simState module.SimulationState) []simtyp
|
|||||||
// ProposalMsgs returns msgs used for governance proposals for simulations.
|
// ProposalMsgs returns msgs used for governance proposals for simulations.
|
||||||
func (am AppModule) ProposalMsgs(_ module.SimulationState) []simtypes.WeightedProposalMsg {
|
func (am AppModule) ProposalMsgs(_ module.SimulationState) []simtypes.WeightedProposalMsg {
|
||||||
return []simtypes.WeightedProposalMsg{
|
return []simtypes.WeightedProposalMsg{
|
||||||
|
simulation.NewWeightedProposalMsg(
|
||||||
|
opWeightMsgReportPopResult,
|
||||||
|
defaultWeightMsgReportPopResult,
|
||||||
|
func(r *rand.Rand, ctx sdk.Context, accs []simtypes.Account) sdk.Msg {
|
||||||
|
daosimulation.SimulateMsgReportPopResult(am.accountKeeper, am.bankKeeper, am.keeper)
|
||||||
|
return nil
|
||||||
|
},
|
||||||
|
),
|
||||||
simulation.NewWeightedProposalMsg(
|
simulation.NewWeightedProposalMsg(
|
||||||
opWeightMsgReissueRDDLProposal,
|
opWeightMsgReissueRDDLProposal,
|
||||||
defaultWeightMsgReissueRDDLProposal,
|
defaultWeightMsgReissueRDDLProposal,
|
||||||
|
29
x/dao/simulation/report_pop_result.go
Normal file
29
x/dao/simulation/report_pop_result.go
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
package simulation
|
||||||
|
|
||||||
|
import (
|
||||||
|
"math/rand"
|
||||||
|
|
||||||
|
"github.com/cosmos/cosmos-sdk/baseapp"
|
||||||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||||
|
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
|
||||||
|
"github.com/planetmint/planetmint-go/x/dao/keeper"
|
||||||
|
"github.com/planetmint/planetmint-go/x/dao/types"
|
||||||
|
)
|
||||||
|
|
||||||
|
func SimulateMsgReportPopResult(
|
||||||
|
_ types.AccountKeeper,
|
||||||
|
_ types.BankKeeper,
|
||||||
|
_ keeper.Keeper,
|
||||||
|
) simtypes.Operation {
|
||||||
|
return func(r *rand.Rand, app *baseapp.BaseApp, ctx sdk.Context, accs []simtypes.Account, chainID string,
|
||||||
|
) (simtypes.OperationMsg, []simtypes.FutureOperation, error) {
|
||||||
|
simAccount, _ := simtypes.RandomAcc(r, accs)
|
||||||
|
msg := &types.MsgReportPopResult{
|
||||||
|
Creator: simAccount.Address.String(),
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: Handling the ReportPopResult simulation
|
||||||
|
|
||||||
|
return simtypes.NoOpMsg(types.ModuleName, msg.Type(), "ReportPopResult simulation not implemented"), nil, nil
|
||||||
|
}
|
||||||
|
}
|
@ -25,7 +25,7 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
|
|||||||
type Challenge struct {
|
type Challenge struct {
|
||||||
Initiator string `protobuf:"bytes,1,opt,name=initiator,proto3" json:"initiator,omitempty"`
|
Initiator string `protobuf:"bytes,1,opt,name=initiator,proto3" json:"initiator,omitempty"`
|
||||||
Challenger string `protobuf:"bytes,2,opt,name=challenger,proto3" json:"challenger,omitempty"`
|
Challenger string `protobuf:"bytes,2,opt,name=challenger,proto3" json:"challenger,omitempty"`
|
||||||
Challangee string `protobuf:"bytes,3,opt,name=challangee,proto3" json:"challangee,omitempty"`
|
Challengee string `protobuf:"bytes,3,opt,name=challengee,proto3" json:"challengee,omitempty"`
|
||||||
Height uint64 `protobuf:"varint,4,opt,name=height,proto3" json:"height,omitempty"`
|
Height uint64 `protobuf:"varint,4,opt,name=height,proto3" json:"height,omitempty"`
|
||||||
Success bool `protobuf:"varint,5,opt,name=success,proto3" json:"success,omitempty"`
|
Success bool `protobuf:"varint,5,opt,name=success,proto3" json:"success,omitempty"`
|
||||||
Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
|
Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
|
||||||
@ -78,9 +78,9 @@ func (m *Challenge) GetChallenger() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Challenge) GetChallangee() string {
|
func (m *Challenge) GetChallengee() string {
|
||||||
if m != nil {
|
if m != nil {
|
||||||
return m.Challangee
|
return m.Challengee
|
||||||
}
|
}
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
@ -113,22 +113,22 @@ func init() {
|
|||||||
func init() { proto.RegisterFile("planetmintgo/dao/challenge.proto", fileDescriptor_04a15978d0195742) }
|
func init() { proto.RegisterFile("planetmintgo/dao/challenge.proto", fileDescriptor_04a15978d0195742) }
|
||||||
|
|
||||||
var fileDescriptor_04a15978d0195742 = []byte{
|
var fileDescriptor_04a15978d0195742 = []byte{
|
||||||
// 238 bytes of a gzipped FileDescriptorProto
|
// 236 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x90, 0x31, 0x4e, 0xc4, 0x30,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x90, 0xb1, 0x4e, 0xc4, 0x30,
|
||||||
0x14, 0x44, 0x63, 0x58, 0x02, 0x31, 0x0d, 0x72, 0x81, 0x5c, 0x20, 0xcb, 0xa2, 0x4a, 0x43, 0x5c,
|
0x10, 0x44, 0x63, 0x38, 0x02, 0x31, 0x0d, 0x72, 0x81, 0x5c, 0x20, 0xcb, 0xa2, 0x4a, 0x43, 0x5c,
|
||||||
0x70, 0x03, 0xa8, 0x68, 0x53, 0xd2, 0x79, 0x1d, 0xcb, 0xb1, 0x94, 0xf5, 0x8f, 0xe2, 0xbf, 0x12,
|
0xf0, 0x07, 0x50, 0xd1, 0xa6, 0xa4, 0xf3, 0x39, 0x2b, 0xc7, 0x52, 0xce, 0x1b, 0xc5, 0x7b, 0x12,
|
||||||
0xdc, 0x82, 0x0b, 0xd1, 0x53, 0x6e, 0x49, 0x89, 0x92, 0x8b, 0x20, 0x59, 0xbb, 0x1b, 0x77, 0x7f,
|
0xfc, 0x05, 0x3f, 0x44, 0x4f, 0x79, 0x25, 0x25, 0x4a, 0x7e, 0x04, 0x29, 0xe2, 0x48, 0xa0, 0xdb,
|
||||||
0xde, 0x8c, 0x46, 0xfa, 0x43, 0xe5, 0x38, 0xe8, 0x60, 0x71, 0xe7, 0x03, 0x3a, 0x50, 0x9d, 0x06,
|
0x99, 0x37, 0x1a, 0x69, 0x87, 0xeb, 0xbe, 0xb3, 0x11, 0x68, 0x17, 0x22, 0x79, 0x34, 0x8d, 0x45,
|
||||||
0x65, 0x7a, 0x3d, 0x0c, 0x36, 0x38, 0xdb, 0x8c, 0x13, 0x20, 0xb0, 0xbb, 0x3c, 0xd1, 0x74, 0x1a,
|
0xe3, 0x5a, 0xdb, 0x75, 0x10, 0x3d, 0x54, 0xfd, 0x80, 0x84, 0xe2, 0x6a, 0x9d, 0xa8, 0x1a, 0x8b,
|
||||||
0x1e, 0xbf, 0x09, 0xad, 0x5e, 0x4f, 0x29, 0xf6, 0x40, 0x2b, 0x1f, 0x3c, 0x7a, 0x8d, 0x30, 0x71,
|
0xb7, 0xef, 0x8c, 0x17, 0x8f, 0xc7, 0x94, 0xb8, 0xe1, 0x45, 0x88, 0x81, 0x82, 0x25, 0x1c, 0x24,
|
||||||
0x22, 0x49, 0x5d, 0xb5, 0x2b, 0x60, 0x82, 0xd2, 0x73, 0xe1, 0xc4, 0x2f, 0x92, 0x9d, 0x91, 0xb3,
|
0xd3, 0xac, 0x2c, 0xea, 0xc5, 0x10, 0x8a, 0xf3, 0xdf, 0xc2, 0x41, 0x9e, 0xcc, 0x78, 0xe5, 0xfc,
|
||||||
0xaf, 0x83, 0xb3, 0x96, 0x5f, 0x66, 0x7e, 0x22, 0xec, 0x9e, 0x96, 0xbd, 0xf5, 0xae, 0x47, 0xbe,
|
0xe1, 0x20, 0x4f, 0xff, 0x71, 0x10, 0xd7, 0x3c, 0x6f, 0x21, 0xf8, 0x96, 0xe4, 0x46, 0xb3, 0x72,
|
||||||
0x91, 0xa4, 0xde, 0xb4, 0x47, 0xc5, 0x38, 0xbd, 0x8e, 0x7b, 0x63, 0x6c, 0x8c, 0xfc, 0x4a, 0x92,
|
0x53, 0xff, 0x28, 0x21, 0xf9, 0x79, 0xda, 0x3b, 0x07, 0x29, 0xc9, 0x33, 0xcd, 0xca, 0x8b, 0xfa,
|
||||||
0xfa, 0xa6, 0x3d, 0x49, 0x26, 0xe9, 0x6d, 0x67, 0xa3, 0x99, 0xfc, 0x88, 0x1e, 0x02, 0x2f, 0x53,
|
0x28, 0x85, 0xe6, 0x97, 0x0d, 0x24, 0x37, 0x84, 0x9e, 0x02, 0x46, 0x99, 0xcf, 0x95, 0x6b, 0xeb,
|
||||||
0x65, 0x8e, 0x5e, 0xde, 0x7e, 0x66, 0x41, 0x0e, 0xb3, 0x20, 0x7f, 0xb3, 0x20, 0x5f, 0x8b, 0x28,
|
0xe1, 0xe9, 0x63, 0x54, 0xec, 0x30, 0x2a, 0xf6, 0x35, 0x2a, 0xf6, 0x36, 0xa9, 0xec, 0x30, 0xa9,
|
||||||
0x0e, 0x8b, 0x28, 0x7e, 0x17, 0x51, 0xbc, 0x2b, 0xe7, 0xb1, 0xdf, 0x6f, 0x1b, 0x03, 0x3b, 0xb5,
|
0xec, 0x73, 0x52, 0xd9, 0xb3, 0xf1, 0x81, 0xda, 0xfd, 0xb6, 0x72, 0xb8, 0x33, 0xcb, 0xdb, 0xab,
|
||||||
0xbe, 0x9d, 0x9d, 0x4f, 0x0e, 0xd4, 0x47, 0x9a, 0x09, 0x3f, 0x47, 0x1b, 0xb7, 0x65, 0xda, 0xe8,
|
0xf3, 0xce, 0xa3, 0x79, 0x99, 0x67, 0xa2, 0xd7, 0x1e, 0xd2, 0x36, 0x9f, 0x37, 0xba, 0xff, 0x0e,
|
||||||
0xf9, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x46, 0x8a, 0xdb, 0xcf, 0x47, 0x01, 0x00, 0x00,
|
0x00, 0x00, 0xff, 0xff, 0x46, 0x26, 0x54, 0x4c, 0x47, 0x01, 0x00, 0x00,
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Challenge) Marshal() (dAtA []byte, err error) {
|
func (m *Challenge) Marshal() (dAtA []byte, err error) {
|
||||||
@ -173,10 +173,10 @@ func (m *Challenge) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|||||||
i--
|
i--
|
||||||
dAtA[i] = 0x20
|
dAtA[i] = 0x20
|
||||||
}
|
}
|
||||||
if len(m.Challangee) > 0 {
|
if len(m.Challengee) > 0 {
|
||||||
i -= len(m.Challangee)
|
i -= len(m.Challengee)
|
||||||
copy(dAtA[i:], m.Challangee)
|
copy(dAtA[i:], m.Challengee)
|
||||||
i = encodeVarintChallenge(dAtA, i, uint64(len(m.Challangee)))
|
i = encodeVarintChallenge(dAtA, i, uint64(len(m.Challengee)))
|
||||||
i--
|
i--
|
||||||
dAtA[i] = 0x1a
|
dAtA[i] = 0x1a
|
||||||
}
|
}
|
||||||
@ -222,7 +222,7 @@ func (m *Challenge) Size() (n int) {
|
|||||||
if l > 0 {
|
if l > 0 {
|
||||||
n += 1 + l + sovChallenge(uint64(l))
|
n += 1 + l + sovChallenge(uint64(l))
|
||||||
}
|
}
|
||||||
l = len(m.Challangee)
|
l = len(m.Challengee)
|
||||||
if l > 0 {
|
if l > 0 {
|
||||||
n += 1 + l + sovChallenge(uint64(l))
|
n += 1 + l + sovChallenge(uint64(l))
|
||||||
}
|
}
|
||||||
@ -340,7 +340,7 @@ func (m *Challenge) Unmarshal(dAtA []byte) error {
|
|||||||
iNdEx = postIndex
|
iNdEx = postIndex
|
||||||
case 3:
|
case 3:
|
||||||
if wireType != 2 {
|
if wireType != 2 {
|
||||||
return fmt.Errorf("proto: wrong wireType = %d for field Challangee", wireType)
|
return fmt.Errorf("proto: wrong wireType = %d for field Challengee", wireType)
|
||||||
}
|
}
|
||||||
var stringLen uint64
|
var stringLen uint64
|
||||||
for shift := uint(0); ; shift += 7 {
|
for shift := uint(0); ; shift += 7 {
|
||||||
@ -368,7 +368,7 @@ func (m *Challenge) Unmarshal(dAtA []byte) error {
|
|||||||
if postIndex > l {
|
if postIndex > l {
|
||||||
return io.ErrUnexpectedEOF
|
return io.ErrUnexpectedEOF
|
||||||
}
|
}
|
||||||
m.Challangee = string(dAtA[iNdEx:postIndex])
|
m.Challengee = string(dAtA[iNdEx:postIndex])
|
||||||
iNdEx = postIndex
|
iNdEx = postIndex
|
||||||
case 4:
|
case 4:
|
||||||
if wireType != 0 {
|
if wireType != 0 {
|
||||||
|
@ -8,6 +8,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func RegisterCodec(cdc *codec.LegacyAmino) {
|
func RegisterCodec(cdc *codec.LegacyAmino) {
|
||||||
|
cdc.RegisterConcrete(&MsgReportPopResult{}, "dao/ReportPopResult", nil)
|
||||||
cdc.RegisterConcrete(&MsgReissueRDDLProposal{}, "dao/ReissueRDDLProposal", nil)
|
cdc.RegisterConcrete(&MsgReissueRDDLProposal{}, "dao/ReissueRDDLProposal", nil)
|
||||||
cdc.RegisterConcrete(&MsgMintToken{}, "dao/MintToken", nil)
|
cdc.RegisterConcrete(&MsgMintToken{}, "dao/MintToken", nil)
|
||||||
cdc.RegisterConcrete(&MsgReissueRDDLResult{}, "dao/ReissueRDDLResult", nil)
|
cdc.RegisterConcrete(&MsgReissueRDDLResult{}, "dao/ReissueRDDLResult", nil)
|
||||||
@ -19,6 +20,7 @@ func RegisterCodec(cdc *codec.LegacyAmino) {
|
|||||||
|
|
||||||
func RegisterInterfaces(registry cdctypes.InterfaceRegistry) {
|
func RegisterInterfaces(registry cdctypes.InterfaceRegistry) {
|
||||||
registry.RegisterImplementations((*sdk.Msg)(nil),
|
registry.RegisterImplementations((*sdk.Msg)(nil),
|
||||||
|
&MsgReportPopResult{},
|
||||||
&MsgReissueRDDLProposal{},
|
&MsgReissueRDDLProposal{},
|
||||||
&MsgMintToken{},
|
&MsgMintToken{},
|
||||||
)
|
)
|
||||||
|
@ -8,16 +8,18 @@ import (
|
|||||||
|
|
||||||
// x/dao module sentinel errors
|
// x/dao module sentinel errors
|
||||||
var (
|
var (
|
||||||
ErrInvalidMintAddress = errorsmod.Register(ModuleName, 2, "invalid mint address")
|
ErrInvalidMintAddress = errorsmod.Register(ModuleName, 2, "invalid mint address")
|
||||||
ErrMintFailed = errorsmod.Register(ModuleName, 3, "minting failed")
|
ErrMintFailed = errorsmod.Register(ModuleName, 3, "minting failed")
|
||||||
ErrTransferFailed = errorsmod.Register(ModuleName, 4, "transfer failed")
|
ErrTransferFailed = errorsmod.Register(ModuleName, 4, "transfer failed")
|
||||||
ErrInvalidAddress = errorsmod.Register(ModuleName, 5, "invalid address")
|
ErrInvalidAddress = errorsmod.Register(ModuleName, 5, "invalid address")
|
||||||
ErrAlreadyMinted = errorsmod.Register(ModuleName, 6, "already minted")
|
ErrAlreadyMinted = errorsmod.Register(ModuleName, 6, "already minted")
|
||||||
ErrWrongBlockHeight = errorsmod.Register(ModuleName, 7, "wrong block height")
|
ErrWrongBlockHeight = errorsmod.Register(ModuleName, 7, "wrong block height")
|
||||||
ErrReissuanceNotFound = errorsmod.Register(ModuleName, 8, "reissuance not found")
|
ErrReissuanceNotFound = errorsmod.Register(ModuleName, 8, "reissuance not found")
|
||||||
ErrInvalidProposer = errorsmod.Register(ModuleName, 9, "invalid proposer")
|
ErrInvalidProposer = errorsmod.Register(ModuleName, 9, "invalid proposer")
|
||||||
ErrTXAlreadySet = errorsmod.Register(ModuleName, 10, "tx already set")
|
ErrTXAlreadySet = errorsmod.Register(ModuleName, 10, "tx already set")
|
||||||
ErrReissuanceProposal = errorsmod.Register(ModuleName, 11, "invalid reissuance proposal")
|
ErrReissuanceProposal = errorsmod.Register(ModuleName, 11, "invalid reissuance proposal")
|
||||||
ErrReissuanceFailed = errorsmod.Register(ModuleName, 12, "reissuance of RDDL failed")
|
ErrReissuanceFailed = errorsmod.Register(ModuleName, 12, "reissuance of RDDL failed")
|
||||||
ErrDistributionNotFound = errorsmod.Register(ModuleName, 13, "distribution not found")
|
ErrDistributionNotFound = errorsmod.Register(ModuleName, 13, "distribution not found")
|
||||||
|
ErrInvalidChallenge = errorsmod.Register(ModuleName, 14, "invalid challenge")
|
||||||
|
ErrFailedPoPRewardsIssuance = errorsmod.Register(ModuleName, 15, "PoP rewards issuance failed")
|
||||||
)
|
)
|
||||||
|
47
x/dao/types/message_report_pop_result.go
Normal file
47
x/dao/types/message_report_pop_result.go
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
package types
|
||||||
|
|
||||||
|
import (
|
||||||
|
errorsmod "cosmossdk.io/errors"
|
||||||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||||
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
||||||
|
)
|
||||||
|
|
||||||
|
const TypeMsgReportPopResult = "report_pop_result"
|
||||||
|
|
||||||
|
var _ sdk.Msg = &MsgReportPopResult{}
|
||||||
|
|
||||||
|
func NewMsgReportPopResult(creator string, challenge *Challenge) *MsgReportPopResult {
|
||||||
|
return &MsgReportPopResult{
|
||||||
|
Creator: creator,
|
||||||
|
Challenge: challenge,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (msg *MsgReportPopResult) Route() string {
|
||||||
|
return RouterKey
|
||||||
|
}
|
||||||
|
|
||||||
|
func (msg *MsgReportPopResult) Type() string {
|
||||||
|
return TypeMsgReportPopResult
|
||||||
|
}
|
||||||
|
|
||||||
|
func (msg *MsgReportPopResult) GetSigners() []sdk.AccAddress {
|
||||||
|
creator, err := sdk.AccAddressFromBech32(msg.Creator)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
return []sdk.AccAddress{creator}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (msg *MsgReportPopResult) GetSignBytes() []byte {
|
||||||
|
bz := ModuleCdc.MustMarshalJSON(msg)
|
||||||
|
return sdk.MustSortJSON(bz)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (msg *MsgReportPopResult) ValidateBasic() error {
|
||||||
|
_, err := sdk.AccAddressFromBech32(msg.Creator)
|
||||||
|
if err != nil {
|
||||||
|
return errorsmod.Wrapf(sdkerrors.ErrInvalidAddress, "invalid creator address (%s)", err)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
@ -31,6 +31,94 @@ var _ = math.Inf
|
|||||||
// proto package needs to be updated.
|
// proto package needs to be updated.
|
||||||
const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
|
const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
|
||||||
|
|
||||||
|
type MsgReportPopResult struct {
|
||||||
|
Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
|
||||||
|
Challenge *Challenge `protobuf:"bytes,2,opt,name=challenge,proto3" json:"challenge,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MsgReportPopResult) Reset() { *m = MsgReportPopResult{} }
|
||||||
|
func (m *MsgReportPopResult) String() string { return proto.CompactTextString(m) }
|
||||||
|
func (*MsgReportPopResult) ProtoMessage() {}
|
||||||
|
func (*MsgReportPopResult) Descriptor() ([]byte, []int) {
|
||||||
|
return fileDescriptor_7117c47dbc1828c7, []int{0}
|
||||||
|
}
|
||||||
|
func (m *MsgReportPopResult) XXX_Unmarshal(b []byte) error {
|
||||||
|
return m.Unmarshal(b)
|
||||||
|
}
|
||||||
|
func (m *MsgReportPopResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||||
|
if deterministic {
|
||||||
|
return xxx_messageInfo_MsgReportPopResult.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 *MsgReportPopResult) XXX_Merge(src proto.Message) {
|
||||||
|
xxx_messageInfo_MsgReportPopResult.Merge(m, src)
|
||||||
|
}
|
||||||
|
func (m *MsgReportPopResult) XXX_Size() int {
|
||||||
|
return m.Size()
|
||||||
|
}
|
||||||
|
func (m *MsgReportPopResult) XXX_DiscardUnknown() {
|
||||||
|
xxx_messageInfo_MsgReportPopResult.DiscardUnknown(m)
|
||||||
|
}
|
||||||
|
|
||||||
|
var xxx_messageInfo_MsgReportPopResult proto.InternalMessageInfo
|
||||||
|
|
||||||
|
func (m *MsgReportPopResult) GetCreator() string {
|
||||||
|
if m != nil {
|
||||||
|
return m.Creator
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MsgReportPopResult) GetChallenge() *Challenge {
|
||||||
|
if m != nil {
|
||||||
|
return m.Challenge
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type MsgReportPopResultResponse struct {
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MsgReportPopResultResponse) Reset() { *m = MsgReportPopResultResponse{} }
|
||||||
|
func (m *MsgReportPopResultResponse) String() string { return proto.CompactTextString(m) }
|
||||||
|
func (*MsgReportPopResultResponse) ProtoMessage() {}
|
||||||
|
func (*MsgReportPopResultResponse) Descriptor() ([]byte, []int) {
|
||||||
|
return fileDescriptor_7117c47dbc1828c7, []int{1}
|
||||||
|
}
|
||||||
|
func (m *MsgReportPopResultResponse) XXX_Unmarshal(b []byte) error {
|
||||||
|
return m.Unmarshal(b)
|
||||||
|
}
|
||||||
|
func (m *MsgReportPopResultResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||||
|
if deterministic {
|
||||||
|
return xxx_messageInfo_MsgReportPopResultResponse.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 *MsgReportPopResultResponse) XXX_Merge(src proto.Message) {
|
||||||
|
xxx_messageInfo_MsgReportPopResultResponse.Merge(m, src)
|
||||||
|
}
|
||||||
|
func (m *MsgReportPopResultResponse) XXX_Size() int {
|
||||||
|
return m.Size()
|
||||||
|
}
|
||||||
|
func (m *MsgReportPopResultResponse) XXX_DiscardUnknown() {
|
||||||
|
xxx_messageInfo_MsgReportPopResultResponse.DiscardUnknown(m)
|
||||||
|
}
|
||||||
|
|
||||||
|
var xxx_messageInfo_MsgReportPopResultResponse proto.InternalMessageInfo
|
||||||
|
|
||||||
type MsgReissueRDDLProposal struct {
|
type MsgReissueRDDLProposal struct {
|
||||||
Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
|
Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
|
||||||
Proposer string `protobuf:"bytes,2,opt,name=proposer,proto3" json:"proposer,omitempty"`
|
Proposer string `protobuf:"bytes,2,opt,name=proposer,proto3" json:"proposer,omitempty"`
|
||||||
@ -42,7 +130,7 @@ func (m *MsgReissueRDDLProposal) Reset() { *m = MsgReissueRDDLProposal{}
|
|||||||
func (m *MsgReissueRDDLProposal) String() string { return proto.CompactTextString(m) }
|
func (m *MsgReissueRDDLProposal) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgReissueRDDLProposal) ProtoMessage() {}
|
func (*MsgReissueRDDLProposal) ProtoMessage() {}
|
||||||
func (*MsgReissueRDDLProposal) Descriptor() ([]byte, []int) {
|
func (*MsgReissueRDDLProposal) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_7117c47dbc1828c7, []int{0}
|
return fileDescriptor_7117c47dbc1828c7, []int{2}
|
||||||
}
|
}
|
||||||
func (m *MsgReissueRDDLProposal) XXX_Unmarshal(b []byte) error {
|
func (m *MsgReissueRDDLProposal) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
@ -106,7 +194,7 @@ func (m *MsgReissueRDDLProposalResponse) Reset() { *m = MsgReissueRDDLPr
|
|||||||
func (m *MsgReissueRDDLProposalResponse) String() string { return proto.CompactTextString(m) }
|
func (m *MsgReissueRDDLProposalResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgReissueRDDLProposalResponse) ProtoMessage() {}
|
func (*MsgReissueRDDLProposalResponse) ProtoMessage() {}
|
||||||
func (*MsgReissueRDDLProposalResponse) Descriptor() ([]byte, []int) {
|
func (*MsgReissueRDDLProposalResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_7117c47dbc1828c7, []int{1}
|
return fileDescriptor_7117c47dbc1828c7, []int{3}
|
||||||
}
|
}
|
||||||
func (m *MsgReissueRDDLProposalResponse) XXX_Unmarshal(b []byte) error {
|
func (m *MsgReissueRDDLProposalResponse) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
@ -144,7 +232,7 @@ func (m *MsgMintToken) Reset() { *m = MsgMintToken{} }
|
|||||||
func (m *MsgMintToken) String() string { return proto.CompactTextString(m) }
|
func (m *MsgMintToken) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgMintToken) ProtoMessage() {}
|
func (*MsgMintToken) ProtoMessage() {}
|
||||||
func (*MsgMintToken) Descriptor() ([]byte, []int) {
|
func (*MsgMintToken) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_7117c47dbc1828c7, []int{2}
|
return fileDescriptor_7117c47dbc1828c7, []int{4}
|
||||||
}
|
}
|
||||||
func (m *MsgMintToken) XXX_Unmarshal(b []byte) error {
|
func (m *MsgMintToken) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
@ -194,7 +282,7 @@ func (m *MsgMintTokenResponse) Reset() { *m = MsgMintTokenResponse{} }
|
|||||||
func (m *MsgMintTokenResponse) String() string { return proto.CompactTextString(m) }
|
func (m *MsgMintTokenResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgMintTokenResponse) ProtoMessage() {}
|
func (*MsgMintTokenResponse) ProtoMessage() {}
|
||||||
func (*MsgMintTokenResponse) Descriptor() ([]byte, []int) {
|
func (*MsgMintTokenResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_7117c47dbc1828c7, []int{3}
|
return fileDescriptor_7117c47dbc1828c7, []int{5}
|
||||||
}
|
}
|
||||||
func (m *MsgMintTokenResponse) XXX_Unmarshal(b []byte) error {
|
func (m *MsgMintTokenResponse) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
@ -234,7 +322,7 @@ func (m *MsgReissueRDDLResult) Reset() { *m = MsgReissueRDDLResult{} }
|
|||||||
func (m *MsgReissueRDDLResult) String() string { return proto.CompactTextString(m) }
|
func (m *MsgReissueRDDLResult) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgReissueRDDLResult) ProtoMessage() {}
|
func (*MsgReissueRDDLResult) ProtoMessage() {}
|
||||||
func (*MsgReissueRDDLResult) Descriptor() ([]byte, []int) {
|
func (*MsgReissueRDDLResult) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_7117c47dbc1828c7, []int{4}
|
return fileDescriptor_7117c47dbc1828c7, []int{6}
|
||||||
}
|
}
|
||||||
func (m *MsgReissueRDDLResult) XXX_Unmarshal(b []byte) error {
|
func (m *MsgReissueRDDLResult) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
@ -298,7 +386,7 @@ func (m *MsgReissueRDDLResultResponse) Reset() { *m = MsgReissueRDDLResu
|
|||||||
func (m *MsgReissueRDDLResultResponse) String() string { return proto.CompactTextString(m) }
|
func (m *MsgReissueRDDLResultResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgReissueRDDLResultResponse) ProtoMessage() {}
|
func (*MsgReissueRDDLResultResponse) ProtoMessage() {}
|
||||||
func (*MsgReissueRDDLResultResponse) Descriptor() ([]byte, []int) {
|
func (*MsgReissueRDDLResultResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_7117c47dbc1828c7, []int{5}
|
return fileDescriptor_7117c47dbc1828c7, []int{7}
|
||||||
}
|
}
|
||||||
func (m *MsgReissueRDDLResultResponse) XXX_Unmarshal(b []byte) error {
|
func (m *MsgReissueRDDLResultResponse) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
@ -339,7 +427,7 @@ func (m *MsgDistributionResult) Reset() { *m = MsgDistributionResult{} }
|
|||||||
func (m *MsgDistributionResult) String() string { return proto.CompactTextString(m) }
|
func (m *MsgDistributionResult) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgDistributionResult) ProtoMessage() {}
|
func (*MsgDistributionResult) ProtoMessage() {}
|
||||||
func (*MsgDistributionResult) Descriptor() ([]byte, []int) {
|
func (*MsgDistributionResult) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_7117c47dbc1828c7, []int{6}
|
return fileDescriptor_7117c47dbc1828c7, []int{8}
|
||||||
}
|
}
|
||||||
func (m *MsgDistributionResult) XXX_Unmarshal(b []byte) error {
|
func (m *MsgDistributionResult) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
@ -410,7 +498,7 @@ func (m *MsgDistributionResultResponse) Reset() { *m = MsgDistributionRe
|
|||||||
func (m *MsgDistributionResultResponse) String() string { return proto.CompactTextString(m) }
|
func (m *MsgDistributionResultResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgDistributionResultResponse) ProtoMessage() {}
|
func (*MsgDistributionResultResponse) ProtoMessage() {}
|
||||||
func (*MsgDistributionResultResponse) Descriptor() ([]byte, []int) {
|
func (*MsgDistributionResultResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_7117c47dbc1828c7, []int{7}
|
return fileDescriptor_7117c47dbc1828c7, []int{9}
|
||||||
}
|
}
|
||||||
func (m *MsgDistributionResultResponse) XXX_Unmarshal(b []byte) error {
|
func (m *MsgDistributionResultResponse) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
@ -448,7 +536,7 @@ func (m *MsgDistributionRequest) Reset() { *m = MsgDistributionRequest{}
|
|||||||
func (m *MsgDistributionRequest) String() string { return proto.CompactTextString(m) }
|
func (m *MsgDistributionRequest) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgDistributionRequest) ProtoMessage() {}
|
func (*MsgDistributionRequest) ProtoMessage() {}
|
||||||
func (*MsgDistributionRequest) Descriptor() ([]byte, []int) {
|
func (*MsgDistributionRequest) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_7117c47dbc1828c7, []int{8}
|
return fileDescriptor_7117c47dbc1828c7, []int{10}
|
||||||
}
|
}
|
||||||
func (m *MsgDistributionRequest) XXX_Unmarshal(b []byte) error {
|
func (m *MsgDistributionRequest) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
@ -498,7 +586,7 @@ func (m *MsgDistributionRequestResponse) Reset() { *m = MsgDistributionR
|
|||||||
func (m *MsgDistributionRequestResponse) String() string { return proto.CompactTextString(m) }
|
func (m *MsgDistributionRequestResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgDistributionRequestResponse) ProtoMessage() {}
|
func (*MsgDistributionRequestResponse) ProtoMessage() {}
|
||||||
func (*MsgDistributionRequestResponse) Descriptor() ([]byte, []int) {
|
func (*MsgDistributionRequestResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_7117c47dbc1828c7, []int{9}
|
return fileDescriptor_7117c47dbc1828c7, []int{11}
|
||||||
}
|
}
|
||||||
func (m *MsgDistributionRequestResponse) XXX_Unmarshal(b []byte) error {
|
func (m *MsgDistributionRequestResponse) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
@ -540,7 +628,7 @@ func (m *MsgUpdateParams) Reset() { *m = MsgUpdateParams{} }
|
|||||||
func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) }
|
func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgUpdateParams) ProtoMessage() {}
|
func (*MsgUpdateParams) ProtoMessage() {}
|
||||||
func (*MsgUpdateParams) Descriptor() ([]byte, []int) {
|
func (*MsgUpdateParams) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_7117c47dbc1828c7, []int{10}
|
return fileDescriptor_7117c47dbc1828c7, []int{12}
|
||||||
}
|
}
|
||||||
func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error {
|
func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
@ -590,7 +678,7 @@ func (m *MsgUpdateParamsResponse) Reset() { *m = MsgUpdateParamsResponse
|
|||||||
func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) }
|
func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgUpdateParamsResponse) ProtoMessage() {}
|
func (*MsgUpdateParamsResponse) ProtoMessage() {}
|
||||||
func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) {
|
func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_7117c47dbc1828c7, []int{11}
|
return fileDescriptor_7117c47dbc1828c7, []int{13}
|
||||||
}
|
}
|
||||||
func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error {
|
func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
@ -620,6 +708,8 @@ func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() {
|
|||||||
var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo
|
var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
proto.RegisterType((*MsgReportPopResult)(nil), "planetmintgo.dao.MsgReportPopResult")
|
||||||
|
proto.RegisterType((*MsgReportPopResultResponse)(nil), "planetmintgo.dao.MsgReportPopResultResponse")
|
||||||
proto.RegisterType((*MsgReissueRDDLProposal)(nil), "planetmintgo.dao.MsgReissueRDDLProposal")
|
proto.RegisterType((*MsgReissueRDDLProposal)(nil), "planetmintgo.dao.MsgReissueRDDLProposal")
|
||||||
proto.RegisterType((*MsgReissueRDDLProposalResponse)(nil), "planetmintgo.dao.MsgReissueRDDLProposalResponse")
|
proto.RegisterType((*MsgReissueRDDLProposalResponse)(nil), "planetmintgo.dao.MsgReissueRDDLProposalResponse")
|
||||||
proto.RegisterType((*MsgMintToken)(nil), "planetmintgo.dao.MsgMintToken")
|
proto.RegisterType((*MsgMintToken)(nil), "planetmintgo.dao.MsgMintToken")
|
||||||
@ -637,52 +727,57 @@ func init() {
|
|||||||
func init() { proto.RegisterFile("planetmintgo/dao/tx.proto", fileDescriptor_7117c47dbc1828c7) }
|
func init() { proto.RegisterFile("planetmintgo/dao/tx.proto", fileDescriptor_7117c47dbc1828c7) }
|
||||||
|
|
||||||
var fileDescriptor_7117c47dbc1828c7 = []byte{
|
var fileDescriptor_7117c47dbc1828c7 = []byte{
|
||||||
// 717 bytes of a gzipped FileDescriptorProto
|
// 787 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0x41, 0x4f, 0x13, 0x41,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0x4f, 0x4f, 0xdb, 0x4a,
|
||||||
0x14, 0xee, 0xd2, 0x0a, 0xf6, 0xd1, 0xa0, 0x2c, 0x08, 0xcb, 0x46, 0x96, 0x5a, 0x12, 0x2c, 0x24,
|
0x10, 0x8f, 0x09, 0x7f, 0x5e, 0x86, 0x08, 0x1e, 0x86, 0x07, 0xc6, 0x0f, 0x4c, 0x9e, 0x79, 0xa2,
|
||||||
0x74, 0x15, 0x13, 0x0f, 0x7a, 0x30, 0x92, 0x26, 0x4a, 0xe2, 0x46, 0xb2, 0xe0, 0xc5, 0x98, 0x90,
|
0x01, 0x95, 0xb8, 0xa5, 0x52, 0xa5, 0xb6, 0x87, 0xaa, 0x34, 0x52, 0x8b, 0xd4, 0xa8, 0xc8, 0xd0,
|
||||||
0x6d, 0x77, 0x32, 0x4c, 0x68, 0x77, 0x96, 0x99, 0x29, 0x29, 0xf1, 0x62, 0xf8, 0x05, 0x9e, 0xfc,
|
0x4b, 0x55, 0x09, 0x39, 0xf1, 0xca, 0xb1, 0x48, 0xbc, 0x66, 0x77, 0x83, 0x82, 0x7a, 0xa9, 0xf8,
|
||||||
0x03, 0x5e, 0x3c, 0x72, 0xf0, 0x47, 0x70, 0x24, 0x9e, 0x3c, 0x19, 0x03, 0x07, 0x7e, 0x84, 0x17,
|
0x04, 0x3d, 0xf5, 0x0b, 0xf4, 0xd2, 0x23, 0x87, 0x7e, 0x08, 0x8e, 0xa8, 0xa7, 0x9e, 0xaa, 0x2a,
|
||||||
0xb3, 0xb3, 0xdb, 0xed, 0x96, 0x5d, 0x4b, 0xe3, 0x05, 0xe6, 0xcd, 0xf7, 0xbd, 0xf7, 0xbe, 0xce,
|
0x1c, 0xf8, 0x1a, 0x95, 0xd7, 0x1b, 0xc7, 0xc1, 0x26, 0xc9, 0x25, 0xd9, 0xd9, 0xdf, 0x6f, 0x66,
|
||||||
0x7b, 0x5f, 0x16, 0x16, 0xfc, 0x96, 0xe3, 0x21, 0xd1, 0x26, 0x9e, 0xc0, 0xd4, 0x74, 0x1d, 0x6a,
|
0x7e, 0x9e, 0x9d, 0x59, 0x1b, 0x96, 0xfd, 0x86, 0xe5, 0x21, 0xd6, 0x74, 0x3d, 0xe6, 0x60, 0xc3,
|
||||||
0x8a, 0x6e, 0xcd, 0x67, 0x54, 0x50, 0xf5, 0x6e, 0x12, 0xaa, 0xb9, 0x0e, 0xd5, 0x97, 0x53, 0xe4,
|
0xb6, 0xb0, 0xc1, 0xda, 0x25, 0x9f, 0x60, 0x86, 0xe5, 0xbf, 0xe3, 0x50, 0xc9, 0xb6, 0xb0, 0x5a,
|
||||||
0xe0, 0xb8, 0xc7, 0xd0, 0x61, 0x07, 0x71, 0x11, 0xa6, 0xe9, 0xab, 0x29, 0x92, 0x4b, 0xb8, 0x60,
|
0x48, 0x90, 0x6b, 0x75, 0xab, 0xd1, 0x40, 0x9e, 0x83, 0x42, 0x1f, 0x75, 0x3d, 0xc1, 0x08, 0x96,
|
||||||
0xa4, 0xd1, 0x11, 0x84, 0x7a, 0x7b, 0x94, 0xb9, 0x88, 0x45, 0xd4, 0xc5, 0x14, 0xd5, 0x77, 0x98,
|
0x47, 0x04, 0x9d, 0xb4, 0x10, 0x65, 0x82, 0xb4, 0x99, 0x20, 0xd9, 0x2e, 0x65, 0xc4, 0xad, 0xb6,
|
||||||
0xd3, 0xe6, 0x11, 0x3c, 0xed, 0xb4, 0x89, 0x47, 0x4d, 0xf9, 0x37, 0xba, 0x9a, 0xc5, 0x14, 0x53,
|
0x98, 0x8b, 0xbd, 0x23, 0x4c, 0x6c, 0x44, 0x04, 0x75, 0x35, 0x41, 0xf5, 0x2d, 0x62, 0x35, 0xa9,
|
||||||
0x79, 0x34, 0x83, 0x53, 0x74, 0xbb, 0xd0, 0xa4, 0xbc, 0x4d, 0xf9, 0x5e, 0x08, 0x84, 0x41, 0x04,
|
0x80, 0xe7, 0xac, 0xa6, 0xeb, 0x61, 0x83, 0xff, 0x8a, 0xad, 0x05, 0x07, 0x3b, 0x98, 0x2f, 0x8d,
|
||||||
0xcd, 0x87, 0x91, 0xd9, 0xe6, 0xd8, 0x3c, 0x7a, 0x1c, 0xfc, 0x0b, 0x81, 0xca, 0x27, 0x05, 0xe6,
|
0x60, 0x25, 0x76, 0x97, 0x6b, 0x98, 0x36, 0x31, 0x3d, 0x0a, 0x81, 0xd0, 0x10, 0xd0, 0x52, 0x68,
|
||||||
0x2c, 0x8e, 0x6d, 0x44, 0x38, 0xef, 0x20, 0xbb, 0x5e, 0x7f, 0xb3, 0xcd, 0xa8, 0x4f, 0xb9, 0xd3,
|
0x19, 0x4d, 0xea, 0x18, 0xa7, 0x0f, 0x83, 0xbf, 0x10, 0xd0, 0x5d, 0x90, 0x2b, 0xd4, 0x31, 0x91,
|
||||||
0x52, 0x35, 0x98, 0x68, 0x32, 0xe4, 0x08, 0xca, 0x34, 0xa5, 0xac, 0x54, 0x8b, 0x76, 0x2f, 0x54,
|
0x8f, 0x09, 0xdb, 0xc7, 0xbe, 0x89, 0x68, 0xab, 0xc1, 0x64, 0x05, 0xa6, 0x6a, 0x04, 0x59, 0x0c,
|
||||||
0x75, 0xb8, 0xed, 0x4b, 0x16, 0x62, 0xda, 0x98, 0x84, 0xe2, 0x58, 0x9d, 0x82, 0x31, 0xd1, 0xd5,
|
0x13, 0x45, 0x2a, 0x48, 0xc5, 0x9c, 0xd9, 0x35, 0xe5, 0x27, 0x90, 0x8b, 0xca, 0xa1, 0x8c, 0x15,
|
||||||
0xf2, 0xf2, 0x76, 0x4c, 0x74, 0xd5, 0x32, 0x4c, 0x36, 0x5a, 0xb4, 0x79, 0xf0, 0x1a, 0x11, 0xbc,
|
0xa4, 0xe2, 0xf4, 0xce, 0xbf, 0xa5, 0xdb, 0x35, 0x2c, 0xbd, 0xec, 0x52, 0xcc, 0x1e, 0x5b, 0x5f,
|
||||||
0x2f, 0xb4, 0x42, 0x59, 0xa9, 0xe6, 0xed, 0xe4, 0x55, 0xa5, 0x0c, 0x46, 0xb6, 0x02, 0x1b, 0x71,
|
0x01, 0x35, 0x99, 0xca, 0x44, 0xd4, 0xc7, 0x1e, 0x45, 0xfa, 0x27, 0x09, 0x16, 0x39, 0xec, 0x52,
|
||||||
0x9f, 0x7a, 0x1c, 0x55, 0x08, 0x94, 0x2c, 0x8e, 0x2d, 0xe2, 0x89, 0x5d, 0x7a, 0x80, 0xbc, 0x21,
|
0xda, 0x42, 0x66, 0xb9, 0xfc, 0x66, 0x9f, 0x60, 0x1f, 0x53, 0xab, 0x31, 0x40, 0x8d, 0x0a, 0x7f,
|
||||||
0xca, 0x5e, 0xc0, 0x64, 0xf0, 0x8c, 0x76, 0x38, 0x0a, 0x29, 0x6e, 0x72, 0x63, 0xb1, 0x76, 0x7d,
|
0xf9, 0x9c, 0x85, 0x08, 0x17, 0x93, 0x33, 0x23, 0x5b, 0x9e, 0x81, 0x31, 0xd6, 0x56, 0xb2, 0x7c,
|
||||||
0x84, 0x35, 0xab, 0x4f, 0xb2, 0x93, 0x19, 0x95, 0x39, 0x98, 0x4d, 0xb6, 0x8a, 0x25, 0x9c, 0x28,
|
0x77, 0x8c, 0xb5, 0xe5, 0x02, 0x4c, 0x57, 0x1b, 0xb8, 0x76, 0xfc, 0x1a, 0xb9, 0x4e, 0x9d, 0x29,
|
||||||
0x12, 0x48, 0xa8, 0xb4, 0x11, 0xef, 0xb4, 0xc4, 0x7f, 0xbe, 0x92, 0x0a, 0x05, 0xd1, 0xdd, 0xaa,
|
0xe3, 0x05, 0xa9, 0x98, 0x35, 0xe3, 0x5b, 0x7a, 0x01, 0xb4, 0x74, 0x05, 0x91, 0x48, 0x17, 0xf2,
|
||||||
0x47, 0xef, 0x24, 0xcf, 0x23, 0xbc, 0x94, 0x01, 0xf7, 0xb3, 0x34, 0xc4, 0x22, 0xbf, 0x2a, 0x70,
|
0x15, 0xea, 0x54, 0x5c, 0x8f, 0x1d, 0xe2, 0x63, 0xe4, 0x0d, 0x50, 0xf6, 0x1c, 0xa6, 0x83, 0x7a,
|
||||||
0xcf, 0xe2, 0xb8, 0x9e, 0x58, 0xb4, 0x1b, 0x55, 0x6a, 0x30, 0xd1, 0x72, 0xb8, 0xd8, 0xa6, 0xbe,
|
0x98, 0x61, 0x4f, 0x88, 0x4a, 0xad, 0x26, 0x2b, 0x55, 0xe9, 0x91, 0xcc, 0xb8, 0x87, 0xbe, 0x08,
|
||||||
0x14, 0x99, 0xb7, 0x7b, 0x61, 0x80, 0xb8, 0x0e, 0xdd, 0xed, 0xcb, 0xec, 0x85, 0x6a, 0x05, 0x4a,
|
0x0b, 0xf1, 0x54, 0x91, 0x84, 0x73, 0x89, 0x03, 0x31, 0x95, 0x43, 0xcf, 0x6c, 0x50, 0x95, 0x64,
|
||||||
0xc4, 0x3b, 0x42, 0x5c, 0x50, 0x26, 0xe1, 0x82, 0x84, 0x07, 0xee, 0x82, 0x6c, 0x9f, 0xfa, 0x12,
|
0x18, 0x67, 0xed, 0xbd, 0xb2, 0xa8, 0x13, 0x5f, 0x8f, 0x50, 0x29, 0x0d, 0x56, 0xd2, 0x34, 0x44,
|
||||||
0xbe, 0x15, 0x66, 0x47, 0x61, 0x65, 0x09, 0x16, 0x33, 0x45, 0xc6, 0x3f, 0xe3, 0xa3, 0x5c, 0xc9,
|
0x22, 0xbf, 0x4a, 0xf0, 0x4f, 0x85, 0x3a, 0xe5, 0x58, 0xc7, 0x0f, 0x55, 0xa9, 0xc0, 0x54, 0xc3,
|
||||||
0x41, 0x82, 0x9c, 0xce, 0x90, 0x9f, 0xf1, 0x0a, 0x4a, 0x49, 0x7f, 0x45, 0x93, 0x5f, 0x4e, 0x4f,
|
0xa2, 0x41, 0x67, 0x70, 0x91, 0x59, 0xb3, 0x6b, 0x06, 0x88, 0x6d, 0xe1, 0xc3, 0x9e, 0xcc, 0xae,
|
||||||
0x3e, 0x59, 0xf6, 0x6d, 0x60, 0x42, 0x7b, 0x20, 0x31, 0xda, 0xc6, 0x8c, 0xe6, 0xb1, 0xbc, 0x2f,
|
0x29, 0xeb, 0x90, 0x77, 0xbd, 0x53, 0x44, 0x19, 0x26, 0x1c, 0x1e, 0xe7, 0x70, 0xdf, 0x5e, 0xe0,
|
||||||
0x0a, 0xdc, 0xb1, 0x38, 0x7e, 0xe7, 0xbb, 0x8e, 0x40, 0xdb, 0xd2, 0xa9, 0xea, 0x53, 0x28, 0x3a,
|
0xed, 0x63, 0x9f, 0xc3, 0x13, 0xa1, 0xb7, 0x30, 0xf5, 0x35, 0x58, 0x4d, 0x15, 0x19, 0x3d, 0xc6,
|
||||||
0x1d, 0xb1, 0x4f, 0x19, 0x11, 0xc7, 0xa1, 0xb4, 0x4d, 0xed, 0xc7, 0xf7, 0xf5, 0xd9, 0xc8, 0x84,
|
0x47, 0xde, 0x92, 0xfd, 0x04, 0x7e, 0x3a, 0x03, 0x1e, 0xe3, 0x15, 0xe4, 0xe3, 0x83, 0x2e, 0x4e,
|
||||||
0x2f, 0x5d, 0x97, 0x21, 0xce, 0x77, 0x04, 0x23, 0x1e, 0xb6, 0xfb, 0x54, 0xf5, 0x39, 0x8c, 0x87,
|
0x7e, 0x3d, 0x79, 0xf2, 0xf1, 0xb0, 0x6f, 0x83, 0xdb, 0xc0, 0xec, 0x73, 0x14, 0xdd, 0x98, 0x92,
|
||||||
0x5e, 0x8f, 0x04, 0x6b, 0x69, 0xc1, 0x61, 0x87, 0xcd, 0xe2, 0xd9, 0xaf, 0xa5, 0xdc, 0xb7, 0xab,
|
0x3c, 0x92, 0xf7, 0x45, 0x82, 0xd9, 0x0a, 0x75, 0xde, 0xf9, 0xb6, 0xc5, 0xd0, 0x3e, 0xbf, 0x32,
|
||||||
0xd3, 0x35, 0xc5, 0x8e, 0x52, 0x9e, 0x4d, 0x9d, 0x5c, 0x9d, 0xae, 0xf5, 0x8b, 0x55, 0x16, 0x60,
|
0xe4, 0xc7, 0x90, 0xb3, 0x5a, 0xac, 0x8e, 0x89, 0xcb, 0xce, 0x42, 0x69, 0xbb, 0xca, 0x8f, 0xef,
|
||||||
0xfe, 0x9a, 0xae, 0x9e, 0xe6, 0x8d, 0x3f, 0x05, 0xc8, 0x5b, 0x1c, 0xab, 0x87, 0x30, 0x93, 0x65,
|
0xdb, 0x0b, 0xe2, 0x36, 0x78, 0x61, 0xdb, 0x04, 0x51, 0x7a, 0xc0, 0x88, 0xeb, 0x39, 0x66, 0x8f,
|
||||||
0xf5, 0x6a, 0x86, 0x43, 0x32, 0x2d, 0xa9, 0x3f, 0x1a, 0x95, 0xd9, 0x6b, 0xad, 0xee, 0x40, 0xb1,
|
0x2a, 0x3f, 0x83, 0xc9, 0xf0, 0xd2, 0x11, 0x82, 0x95, 0xa4, 0xe0, 0x30, 0xc3, 0x6e, 0xee, 0xf2,
|
||||||
0xef, 0x5c, 0x23, 0x33, 0x3d, 0xc6, 0xf5, 0x95, 0xe1, 0x78, 0x5c, 0xf4, 0x00, 0xa6, 0xd3, 0x56,
|
0xd7, 0x5a, 0xe6, 0xdb, 0xcd, 0xc5, 0x96, 0x64, 0x0a, 0x97, 0xa7, 0x33, 0xe7, 0x37, 0x17, 0x5b,
|
||||||
0x5c, 0xb9, 0x49, 0x5b, 0xc8, 0xd3, 0x6b, 0xa3, 0xf1, 0xe2, 0x66, 0x1e, 0xa8, 0x19, 0x96, 0x7a,
|
0xbd, 0x60, 0xfa, 0x32, 0x2c, 0xdd, 0xd2, 0xd5, 0xd5, 0xbc, 0xd3, 0x99, 0x80, 0x6c, 0x85, 0x3a,
|
||||||
0x98, 0x59, 0x25, 0x4d, 0xd4, 0xcd, 0x11, 0x89, 0x71, 0xbf, 0x43, 0x98, 0xc9, 0x5a, 0xfe, 0xea,
|
0xf2, 0x09, 0xcc, 0xa7, 0x8d, 0x7a, 0x31, 0x65, 0x42, 0x52, 0x47, 0x52, 0x7d, 0x30, 0x2a, 0xb3,
|
||||||
0x08, 0x75, 0x24, 0xf3, 0x1f, 0x43, 0x1a, 0xb2, 0xd3, 0xea, 0x07, 0x28, 0x0d, 0xec, 0xf3, 0x83,
|
0x9b, 0x5a, 0x3e, 0x80, 0x5c, 0x6f, 0x72, 0xb5, 0x54, 0xf7, 0x08, 0x57, 0x37, 0x06, 0xe3, 0x51,
|
||||||
0xcc, 0x0a, 0x49, 0x8a, 0xbe, 0x7a, 0x23, 0xa5, 0x57, 0x7d, 0x73, 0xeb, 0xec, 0xc2, 0x50, 0xce,
|
0xd0, 0x63, 0x98, 0x4b, 0x8e, 0xe2, 0xc6, 0x30, 0x6d, 0x21, 0x4f, 0x2d, 0x8d, 0xc6, 0x8b, 0x92,
|
||||||
0x2f, 0x0c, 0xe5, 0xf7, 0x85, 0xa1, 0x7c, 0xbe, 0x34, 0x72, 0xe7, 0x97, 0x46, 0xee, 0xe7, 0xa5,
|
0x79, 0x20, 0xa7, 0x8c, 0xd4, 0xbd, 0xd4, 0x28, 0x49, 0xa2, 0x6a, 0x8c, 0x48, 0x8c, 0xf2, 0x9d,
|
||||||
0x91, 0x7b, 0x6f, 0x62, 0x22, 0xf6, 0x3b, 0x8d, 0x5a, 0x93, 0xb6, 0xcd, 0x7e, 0xb9, 0xc4, 0x71,
|
0xc0, 0x7c, 0x5a, 0xf3, 0x17, 0x47, 0x88, 0xc3, 0x99, 0x77, 0x1c, 0xd2, 0x80, 0x9e, 0x96, 0x3f,
|
||||||
0x1d, 0x53, 0xb3, 0x1b, 0x7e, 0x90, 0x8f, 0x7d, 0xc4, 0x1b, 0xe3, 0xf2, 0xb3, 0xf5, 0xe4, 0x6f,
|
0x40, 0xbe, 0xaf, 0x9f, 0xff, 0x4b, 0x8d, 0x10, 0xa7, 0xa8, 0x9b, 0x43, 0x29, 0x51, 0x74, 0x04,
|
||||||
0x00, 0x00, 0x00, 0xff, 0xff, 0xa5, 0xda, 0x1e, 0xc8, 0xb1, 0x07, 0x00, 0x00,
|
0xb3, 0xb7, 0x5f, 0x75, 0xff, 0xdf, 0x71, 0x06, 0x7d, 0x2c, 0xf5, 0xfe, 0x28, 0xac, 0x6e, 0x9a,
|
||||||
|
0xdd, 0xbd, 0xcb, 0x8e, 0x26, 0x5d, 0x75, 0x34, 0xe9, 0x77, 0x47, 0x93, 0x3e, 0x5f, 0x6b, 0x99,
|
||||||
|
0xab, 0x6b, 0x2d, 0xf3, 0xf3, 0x5a, 0xcb, 0xbc, 0x37, 0x1c, 0x97, 0xd5, 0x5b, 0xd5, 0x52, 0x0d,
|
||||||
|
0x37, 0x8d, 0x5e, 0xc4, 0xd8, 0x72, 0xdb, 0xc1, 0x46, 0x3b, 0xfc, 0x44, 0x39, 0xf3, 0x11, 0xad,
|
||||||
|
0x4e, 0xf2, 0xd7, 0xf4, 0xa3, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x3f, 0x5c, 0xd6, 0x57, 0xc3,
|
||||||
|
0x08, 0x00, 0x00,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reference imports to suppress errors if they are not otherwise used.
|
// Reference imports to suppress errors if they are not otherwise used.
|
||||||
@ -703,6 +798,7 @@ type MsgClient interface {
|
|||||||
DistributionResult(ctx context.Context, in *MsgDistributionResult, opts ...grpc.CallOption) (*MsgDistributionResultResponse, error)
|
DistributionResult(ctx context.Context, in *MsgDistributionResult, opts ...grpc.CallOption) (*MsgDistributionResultResponse, error)
|
||||||
DistributionRequest(ctx context.Context, in *MsgDistributionRequest, opts ...grpc.CallOption) (*MsgDistributionRequestResponse, error)
|
DistributionRequest(ctx context.Context, in *MsgDistributionRequest, opts ...grpc.CallOption) (*MsgDistributionRequestResponse, error)
|
||||||
UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error)
|
UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error)
|
||||||
|
ReportPopResult(ctx context.Context, in *MsgReportPopResult, opts ...grpc.CallOption) (*MsgReportPopResultResponse, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
type msgClient struct {
|
type msgClient struct {
|
||||||
@ -767,6 +863,15 @@ func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts
|
|||||||
return out, nil
|
return out, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *msgClient) ReportPopResult(ctx context.Context, in *MsgReportPopResult, opts ...grpc.CallOption) (*MsgReportPopResultResponse, error) {
|
||||||
|
out := new(MsgReportPopResultResponse)
|
||||||
|
err := c.cc.Invoke(ctx, "/planetmintgo.dao.Msg/ReportPopResult", in, out, opts...)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return out, nil
|
||||||
|
}
|
||||||
|
|
||||||
// MsgServer is the server API for Msg service.
|
// MsgServer is the server API for Msg service.
|
||||||
type MsgServer interface {
|
type MsgServer interface {
|
||||||
ReissueRDDLProposal(context.Context, *MsgReissueRDDLProposal) (*MsgReissueRDDLProposalResponse, error)
|
ReissueRDDLProposal(context.Context, *MsgReissueRDDLProposal) (*MsgReissueRDDLProposalResponse, error)
|
||||||
@ -775,6 +880,7 @@ type MsgServer interface {
|
|||||||
DistributionResult(context.Context, *MsgDistributionResult) (*MsgDistributionResultResponse, error)
|
DistributionResult(context.Context, *MsgDistributionResult) (*MsgDistributionResultResponse, error)
|
||||||
DistributionRequest(context.Context, *MsgDistributionRequest) (*MsgDistributionRequestResponse, error)
|
DistributionRequest(context.Context, *MsgDistributionRequest) (*MsgDistributionRequestResponse, error)
|
||||||
UpdateParams(context.Context, *MsgUpdateParams) (*MsgUpdateParamsResponse, error)
|
UpdateParams(context.Context, *MsgUpdateParams) (*MsgUpdateParamsResponse, error)
|
||||||
|
ReportPopResult(context.Context, *MsgReportPopResult) (*MsgReportPopResultResponse, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
// UnimplementedMsgServer can be embedded to have forward compatible implementations.
|
// UnimplementedMsgServer can be embedded to have forward compatible implementations.
|
||||||
@ -799,6 +905,9 @@ func (*UnimplementedMsgServer) DistributionRequest(ctx context.Context, req *Msg
|
|||||||
func (*UnimplementedMsgServer) UpdateParams(ctx context.Context, req *MsgUpdateParams) (*MsgUpdateParamsResponse, error) {
|
func (*UnimplementedMsgServer) UpdateParams(ctx context.Context, req *MsgUpdateParams) (*MsgUpdateParamsResponse, error) {
|
||||||
return nil, status.Errorf(codes.Unimplemented, "method UpdateParams not implemented")
|
return nil, status.Errorf(codes.Unimplemented, "method UpdateParams not implemented")
|
||||||
}
|
}
|
||||||
|
func (*UnimplementedMsgServer) ReportPopResult(ctx context.Context, req *MsgReportPopResult) (*MsgReportPopResultResponse, error) {
|
||||||
|
return nil, status.Errorf(codes.Unimplemented, "method ReportPopResult not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
func RegisterMsgServer(s grpc1.Server, srv MsgServer) {
|
func RegisterMsgServer(s grpc1.Server, srv MsgServer) {
|
||||||
s.RegisterService(&_Msg_serviceDesc, srv)
|
s.RegisterService(&_Msg_serviceDesc, srv)
|
||||||
@ -912,6 +1021,24 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in
|
|||||||
return interceptor(ctx, in, info, handler)
|
return interceptor(ctx, in, info, handler)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func _Msg_ReportPopResult_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||||
|
in := new(MsgReportPopResult)
|
||||||
|
if err := dec(in); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if interceptor == nil {
|
||||||
|
return srv.(MsgServer).ReportPopResult(ctx, in)
|
||||||
|
}
|
||||||
|
info := &grpc.UnaryServerInfo{
|
||||||
|
Server: srv,
|
||||||
|
FullMethod: "/planetmintgo.dao.Msg/ReportPopResult",
|
||||||
|
}
|
||||||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
|
return srv.(MsgServer).ReportPopResult(ctx, req.(*MsgReportPopResult))
|
||||||
|
}
|
||||||
|
return interceptor(ctx, in, info, handler)
|
||||||
|
}
|
||||||
|
|
||||||
var _Msg_serviceDesc = grpc.ServiceDesc{
|
var _Msg_serviceDesc = grpc.ServiceDesc{
|
||||||
ServiceName: "planetmintgo.dao.Msg",
|
ServiceName: "planetmintgo.dao.Msg",
|
||||||
HandlerType: (*MsgServer)(nil),
|
HandlerType: (*MsgServer)(nil),
|
||||||
@ -940,11 +1067,80 @@ var _Msg_serviceDesc = grpc.ServiceDesc{
|
|||||||
MethodName: "UpdateParams",
|
MethodName: "UpdateParams",
|
||||||
Handler: _Msg_UpdateParams_Handler,
|
Handler: _Msg_UpdateParams_Handler,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
MethodName: "ReportPopResult",
|
||||||
|
Handler: _Msg_ReportPopResult_Handler,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
Streams: []grpc.StreamDesc{},
|
Streams: []grpc.StreamDesc{},
|
||||||
Metadata: "planetmintgo/dao/tx.proto",
|
Metadata: "planetmintgo/dao/tx.proto",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *MsgReportPopResult) 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 *MsgReportPopResult) MarshalTo(dAtA []byte) (int, error) {
|
||||||
|
size := m.Size()
|
||||||
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MsgReportPopResult) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
||||||
|
i := len(dAtA)
|
||||||
|
_ = i
|
||||||
|
var l int
|
||||||
|
_ = l
|
||||||
|
if m.Challenge != nil {
|
||||||
|
{
|
||||||
|
size, err := m.Challenge.MarshalToSizedBuffer(dAtA[:i])
|
||||||
|
if err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
i -= size
|
||||||
|
i = encodeVarintTx(dAtA, i, uint64(size))
|
||||||
|
}
|
||||||
|
i--
|
||||||
|
dAtA[i] = 0x12
|
||||||
|
}
|
||||||
|
if len(m.Creator) > 0 {
|
||||||
|
i -= len(m.Creator)
|
||||||
|
copy(dAtA[i:], m.Creator)
|
||||||
|
i = encodeVarintTx(dAtA, i, uint64(len(m.Creator)))
|
||||||
|
i--
|
||||||
|
dAtA[i] = 0xa
|
||||||
|
}
|
||||||
|
return len(dAtA) - i, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MsgReportPopResultResponse) 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 *MsgReportPopResultResponse) MarshalTo(dAtA []byte) (int, error) {
|
||||||
|
size := m.Size()
|
||||||
|
return m.MarshalToSizedBuffer(dAtA[:size])
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MsgReportPopResultResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
||||||
|
i := len(dAtA)
|
||||||
|
_ = i
|
||||||
|
var l int
|
||||||
|
_ = l
|
||||||
|
return len(dAtA) - i, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (m *MsgReissueRDDLProposal) Marshal() (dAtA []byte, err error) {
|
func (m *MsgReissueRDDLProposal) Marshal() (dAtA []byte, err error) {
|
||||||
size := m.Size()
|
size := m.Size()
|
||||||
dAtA = make([]byte, size)
|
dAtA = make([]byte, size)
|
||||||
@ -1372,6 +1568,32 @@ func encodeVarintTx(dAtA []byte, offset int, v uint64) int {
|
|||||||
dAtA[offset] = uint8(v)
|
dAtA[offset] = uint8(v)
|
||||||
return base
|
return base
|
||||||
}
|
}
|
||||||
|
func (m *MsgReportPopResult) Size() (n int) {
|
||||||
|
if m == nil {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
var l int
|
||||||
|
_ = l
|
||||||
|
l = len(m.Creator)
|
||||||
|
if l > 0 {
|
||||||
|
n += 1 + l + sovTx(uint64(l))
|
||||||
|
}
|
||||||
|
if m.Challenge != nil {
|
||||||
|
l = m.Challenge.Size()
|
||||||
|
n += 1 + l + sovTx(uint64(l))
|
||||||
|
}
|
||||||
|
return n
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MsgReportPopResultResponse) Size() (n int) {
|
||||||
|
if m == nil {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
var l int
|
||||||
|
_ = l
|
||||||
|
return n
|
||||||
|
}
|
||||||
|
|
||||||
func (m *MsgReissueRDDLProposal) Size() (n int) {
|
func (m *MsgReissueRDDLProposal) Size() (n int) {
|
||||||
if m == nil {
|
if m == nil {
|
||||||
return 0
|
return 0
|
||||||
@ -1557,6 +1779,174 @@ func sovTx(x uint64) (n int) {
|
|||||||
func sozTx(x uint64) (n int) {
|
func sozTx(x uint64) (n int) {
|
||||||
return sovTx(uint64((x << 1) ^ uint64((int64(x) >> 63))))
|
return sovTx(uint64((x << 1) ^ uint64((int64(x) >> 63))))
|
||||||
}
|
}
|
||||||
|
func (m *MsgReportPopResult) 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 ErrIntOverflowTx
|
||||||
|
}
|
||||||
|
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: MsgReportPopResult: wiretype end group for non-group")
|
||||||
|
}
|
||||||
|
if fieldNum <= 0 {
|
||||||
|
return fmt.Errorf("proto: MsgReportPopResult: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||||
|
}
|
||||||
|
switch fieldNum {
|
||||||
|
case 1:
|
||||||
|
if wireType != 2 {
|
||||||
|
return fmt.Errorf("proto: wrong wireType = %d for field Creator", wireType)
|
||||||
|
}
|
||||||
|
var stringLen uint64
|
||||||
|
for shift := uint(0); ; shift += 7 {
|
||||||
|
if shift >= 64 {
|
||||||
|
return ErrIntOverflowTx
|
||||||
|
}
|
||||||
|
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 ErrInvalidLengthTx
|
||||||
|
}
|
||||||
|
postIndex := iNdEx + intStringLen
|
||||||
|
if postIndex < 0 {
|
||||||
|
return ErrInvalidLengthTx
|
||||||
|
}
|
||||||
|
if postIndex > l {
|
||||||
|
return io.ErrUnexpectedEOF
|
||||||
|
}
|
||||||
|
m.Creator = string(dAtA[iNdEx:postIndex])
|
||||||
|
iNdEx = postIndex
|
||||||
|
case 2:
|
||||||
|
if wireType != 2 {
|
||||||
|
return fmt.Errorf("proto: wrong wireType = %d for field Challenge", wireType)
|
||||||
|
}
|
||||||
|
var msglen int
|
||||||
|
for shift := uint(0); ; shift += 7 {
|
||||||
|
if shift >= 64 {
|
||||||
|
return ErrIntOverflowTx
|
||||||
|
}
|
||||||
|
if iNdEx >= l {
|
||||||
|
return io.ErrUnexpectedEOF
|
||||||
|
}
|
||||||
|
b := dAtA[iNdEx]
|
||||||
|
iNdEx++
|
||||||
|
msglen |= int(b&0x7F) << shift
|
||||||
|
if b < 0x80 {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if msglen < 0 {
|
||||||
|
return ErrInvalidLengthTx
|
||||||
|
}
|
||||||
|
postIndex := iNdEx + msglen
|
||||||
|
if postIndex < 0 {
|
||||||
|
return ErrInvalidLengthTx
|
||||||
|
}
|
||||||
|
if postIndex > l {
|
||||||
|
return io.ErrUnexpectedEOF
|
||||||
|
}
|
||||||
|
if m.Challenge == nil {
|
||||||
|
m.Challenge = &Challenge{}
|
||||||
|
}
|
||||||
|
if err := m.Challenge.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
iNdEx = postIndex
|
||||||
|
default:
|
||||||
|
iNdEx = preIndex
|
||||||
|
skippy, err := skipTx(dAtA[iNdEx:])
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||||
|
return ErrInvalidLengthTx
|
||||||
|
}
|
||||||
|
if (iNdEx + skippy) > l {
|
||||||
|
return io.ErrUnexpectedEOF
|
||||||
|
}
|
||||||
|
iNdEx += skippy
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if iNdEx > l {
|
||||||
|
return io.ErrUnexpectedEOF
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
func (m *MsgReportPopResultResponse) 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 ErrIntOverflowTx
|
||||||
|
}
|
||||||
|
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: MsgReportPopResultResponse: wiretype end group for non-group")
|
||||||
|
}
|
||||||
|
if fieldNum <= 0 {
|
||||||
|
return fmt.Errorf("proto: MsgReportPopResultResponse: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||||
|
}
|
||||||
|
switch fieldNum {
|
||||||
|
default:
|
||||||
|
iNdEx = preIndex
|
||||||
|
skippy, err := skipTx(dAtA[iNdEx:])
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||||
|
return ErrInvalidLengthTx
|
||||||
|
}
|
||||||
|
if (iNdEx + skippy) > l {
|
||||||
|
return io.ErrUnexpectedEOF
|
||||||
|
}
|
||||||
|
iNdEx += skippy
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if iNdEx > l {
|
||||||
|
return io.ErrUnexpectedEOF
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
func (m *MsgReissueRDDLProposal) Unmarshal(dAtA []byte) error {
|
func (m *MsgReissueRDDLProposal) Unmarshal(dAtA []byte) error {
|
||||||
l := len(dAtA)
|
l := len(dAtA)
|
||||||
iNdEx := 0
|
iNdEx := 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user