types

package
v0.22.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 25, 2018 License: Apache-2.0 Imports: 15 Imported by: 0

Documentation

Overview

Package types is a generated protocol buffer package.

It is generated from these files:
	abci/types/types.proto

It has these top-level messages:
	Request
	RequestEcho
	RequestFlush
	RequestInfo
	RequestSetOption
	RequestInitChain
	RequestQuery
	RequestBeginBlock
	RequestCheckTx
	RequestDeliverTx
	RequestEndBlock
	RequestCommit
	Response
	ResponseException
	ResponseEcho
	ResponseFlush
	ResponseInfo
	ResponseSetOption
	ResponseInitChain
	ResponseQuery
	ResponseBeginBlock
	ResponseCheckTx
	ResponseDeliverTx
	ResponseEndBlock
	ResponseCommit
	ConsensusParams
	BlockSize
	TxSize
	BlockGossip
	Header
	Validator
	SigningValidator
	PubKey
	Evidence

nolint

Index

Constants

View Source
const (
	CodeTypeOK uint32 = 0
)
View Source
const (
	PubKeyEd25519 = "ed25519"
)

Variables

View Source
var (
	ErrInvalidLengthTypes = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTypes   = fmt.Errorf("proto: integer overflow")
)

Functions

func ReadMessage

func ReadMessage(r io.Reader, msg proto.Message) error

ReadMessage reads a varint length-delimited protobuf message.

func RegisterABCIApplicationServer

func RegisterABCIApplicationServer(s *grpc.Server, srv ABCIApplicationServer)

func ValidatorsString

func ValidatorsString(vs Validators) string

func WriteMessage

func WriteMessage(msg proto.Message, w io.Writer) error

WriteMessage writes a varint length-delimited protobuf message.

Types

type ABCIApplicationClient

type ABCIApplicationClient interface {
	Echo(ctx context.Context, in *RequestEcho, opts ...grpc.CallOption) (*ResponseEcho, error)
	Flush(ctx context.Context, in *RequestFlush, opts ...grpc.CallOption) (*ResponseFlush, error)
	Info(ctx context.Context, in *RequestInfo, opts ...grpc.CallOption) (*ResponseInfo, error)
	SetOption(ctx context.Context, in *RequestSetOption, opts ...grpc.CallOption) (*ResponseSetOption, error)
	DeliverTx(ctx context.Context, in *RequestDeliverTx, opts ...grpc.CallOption) (*ResponseDeliverTx, error)
	CheckTx(ctx context.Context, in *RequestCheckTx, opts ...grpc.CallOption) (*ResponseCheckTx, error)
	Query(ctx context.Context, in *RequestQuery, opts ...grpc.CallOption) (*ResponseQuery, error)
	Commit(ctx context.Context, in *RequestCommit, opts ...grpc.CallOption) (*ResponseCommit, error)
	InitChain(ctx context.Context, in *RequestInitChain, opts ...grpc.CallOption) (*ResponseInitChain, error)
	BeginBlock(ctx context.Context, in *RequestBeginBlock, opts ...grpc.CallOption) (*ResponseBeginBlock, error)
	EndBlock(ctx context.Context, in *RequestEndBlock, opts ...grpc.CallOption) (*ResponseEndBlock, error)
}

func NewABCIApplicationClient

func NewABCIApplicationClient(cc *grpc.ClientConn) ABCIApplicationClient

type Application

type Application interface {
	// Info/Query Connection
	Info(RequestInfo) ResponseInfo                // Return application info
	SetOption(RequestSetOption) ResponseSetOption // Set application option
	Query(RequestQuery) ResponseQuery             // Query for state

	// Mempool Connection
	CheckTx(tx []byte) ResponseCheckTx // Validate a tx for the mempool

	// Consensus Connection
	InitChain(RequestInitChain) ResponseInitChain    // Initialize blockchain with validators and other info from TendermintCore
	BeginBlock(RequestBeginBlock) ResponseBeginBlock // Signals the beginning of a block
	DeliverTx(tx []byte) ResponseDeliverTx           // Deliver a tx for full processing
	EndBlock(RequestEndBlock) ResponseEndBlock       // Signals the end of a block, returns changes to the validator set
	Commit() ResponseCommit                          // Commit the state and return the application Merkle root hash
}

Application is an interface that enables any finite, deterministic state machine to be driven by a blockchain-based replication engine via the ABCI. All methods take a RequestXxx argument and return a ResponseXxx argument, except CheckTx/DeliverTx, which take `tx []byte`, and `Commit`, which takes nothing.

type BaseApplication

type BaseApplication struct {
}

func NewBaseApplication

func NewBaseApplication() *BaseApplication

func (BaseApplication) BeginBlock

func (BaseApplication) CheckTx

func (BaseApplication) CheckTx(tx []byte) ResponseCheckTx

func (BaseApplication) Commit

func (BaseApplication) DeliverTx

func (BaseApplication) DeliverTx(tx []byte) ResponseDeliverTx

func (BaseApplication) EndBlock

func (BaseApplication) Info

func (BaseApplication) InitChain

func (BaseApplication) Query

func (BaseApplication) SetOption

type BlockGossip

type BlockGossip struct {
	// Note: must not be 0
	BlockPartSizeBytes int32 `protobuf:"varint,1,opt,name=block_part_size_bytes,json=blockPartSizeBytes,proto3" json:"block_part_size_bytes,omitempty"`
}

BlockGossip determine consensus critical elements of how blocks are gossiped

func NewPopulatedBlockGossip added in v0.22.5

func NewPopulatedBlockGossip(r randyTypes, easy bool) *BlockGossip

func (*BlockGossip) Descriptor

func (*BlockGossip) Descriptor() ([]byte, []int)

func (*BlockGossip) Equal added in v0.22.5

func (this *BlockGossip) Equal(that interface{}) bool

func (*BlockGossip) GetBlockPartSizeBytes

func (m *BlockGossip) GetBlockPartSizeBytes() int32

func (*BlockGossip) Marshal added in v0.22.5

func (m *BlockGossip) Marshal() (dAtA []byte, err error)

func (*BlockGossip) MarshalTo added in v0.22.5

func (m *BlockGossip) MarshalTo(dAtA []byte) (int, error)

func (*BlockGossip) ProtoMessage

func (*BlockGossip) ProtoMessage()

func (*BlockGossip) Reset

func (m *BlockGossip) Reset()

func (*BlockGossip) Size added in v0.22.5

func (m *BlockGossip) Size() (n int)

func (*BlockGossip) String

func (m *BlockGossip) String() string

func (*BlockGossip) Unmarshal added in v0.22.5

func (m *BlockGossip) Unmarshal(dAtA []byte) error

type BlockSize

type BlockSize struct {
	MaxBytes int32 `protobuf:"varint,1,opt,name=max_bytes,json=maxBytes,proto3" json:"max_bytes,omitempty"`
	MaxTxs   int32 `protobuf:"varint,2,opt,name=max_txs,json=maxTxs,proto3" json:"max_txs,omitempty"`
	MaxGas   int64 `protobuf:"varint,3,opt,name=max_gas,json=maxGas,proto3" json:"max_gas,omitempty"`
}

BlockSize contain limits on the block size.

func NewPopulatedBlockSize added in v0.22.5

func NewPopulatedBlockSize(r randyTypes, easy bool) *BlockSize

func (*BlockSize) Descriptor

func (*BlockSize) Descriptor() ([]byte, []int)

func (*BlockSize) Equal added in v0.22.5

func (this *BlockSize) Equal(that interface{}) bool

func (*BlockSize) GetMaxBytes

func (m *BlockSize) GetMaxBytes() int32

func (*BlockSize) GetMaxGas

func (m *BlockSize) GetMaxGas() int64

func (*BlockSize) GetMaxTxs

func (m *BlockSize) GetMaxTxs() int32

func (*BlockSize) Marshal added in v0.22.5

func (m *BlockSize) Marshal() (dAtA []byte, err error)

func (*BlockSize) MarshalTo added in v0.22.5

func (m *BlockSize) MarshalTo(dAtA []byte) (int, error)

func (*BlockSize) ProtoMessage

func (*BlockSize) ProtoMessage()

func (*BlockSize) Reset

func (m *BlockSize) Reset()

func (*BlockSize) Size added in v0.22.5

func (m *BlockSize) Size() (n int)

func (*BlockSize) String

func (m *BlockSize) String() string

func (*BlockSize) Unmarshal added in v0.22.5

func (m *BlockSize) Unmarshal(dAtA []byte) error

type ConsensusParams

type ConsensusParams struct {
	BlockSize   *BlockSize   `protobuf:"bytes,1,opt,name=block_size,json=blockSize" json:"block_size,omitempty"`
	TxSize      *TxSize      `protobuf:"bytes,2,opt,name=tx_size,json=txSize" json:"tx_size,omitempty"`
	BlockGossip *BlockGossip `protobuf:"bytes,3,opt,name=block_gossip,json=blockGossip" json:"block_gossip,omitempty"`
}

ConsensusParams contains all consensus-relevant parameters that can be adjusted by the abci app

func NewPopulatedConsensusParams added in v0.22.5

func NewPopulatedConsensusParams(r randyTypes, easy bool) *ConsensusParams

func (*ConsensusParams) Descriptor

func (*ConsensusParams) Descriptor() ([]byte, []int)

func (*ConsensusParams) Equal added in v0.22.5

func (this *ConsensusParams) Equal(that interface{}) bool

func (*ConsensusParams) GetBlockGossip

func (m *ConsensusParams) GetBlockGossip() *BlockGossip

func (*ConsensusParams) GetBlockSize

func (m *ConsensusParams) GetBlockSize() *BlockSize

func (*ConsensusParams) GetTxSize

func (m *ConsensusParams) GetTxSize() *TxSize

func (*ConsensusParams) Marshal added in v0.22.5

func (m *ConsensusParams) Marshal() (dAtA []byte, err error)

func (*ConsensusParams) MarshalTo added in v0.22.5

func (m *ConsensusParams) MarshalTo(dAtA []byte) (int, error)

func (*ConsensusParams) ProtoMessage

func (*ConsensusParams) ProtoMessage()

func (*ConsensusParams) Reset

func (m *ConsensusParams) Reset()

func (*ConsensusParams) Size added in v0.22.5

func (m *ConsensusParams) Size() (n int)

func (*ConsensusParams) String

func (m *ConsensusParams) String() string

func (*ConsensusParams) Unmarshal added in v0.22.5

func (m *ConsensusParams) Unmarshal(dAtA []byte) error

type Evidence

type Evidence struct {
	Type             string    `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Validator        Validator `protobuf:"bytes,2,opt,name=validator" json:"validator"`
	Height           int64     `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"`
	Time             int64     `protobuf:"varint,4,opt,name=time,proto3" json:"time,omitempty"`
	TotalVotingPower int64     `protobuf:"varint,5,opt,name=total_voting_power,json=totalVotingPower,proto3" json:"total_voting_power,omitempty"`
}

func NewPopulatedEvidence added in v0.22.5

func NewPopulatedEvidence(r randyTypes, easy bool) *Evidence

func (*Evidence) Descriptor

func (*Evidence) Descriptor() ([]byte, []int)

func (*Evidence) Equal added in v0.22.5

func (this *Evidence) Equal(that interface{}) bool

func (*Evidence) GetHeight

func (m *Evidence) GetHeight() int64

func (*Evidence) GetTime

func (m *Evidence) GetTime() int64

func (*Evidence) GetTotalVotingPower

func (m *Evidence) GetTotalVotingPower() int64

func (*Evidence) GetType

func (m *Evidence) GetType() string

func (*Evidence) GetValidator

func (m *Evidence) GetValidator() Validator

func (*Evidence) Marshal added in v0.22.5

func (m *Evidence) Marshal() (dAtA []byte, err error)

func (*Evidence) MarshalTo added in v0.22.5

func (m *Evidence) MarshalTo(dAtA []byte) (int, error)

func (*Evidence) ProtoMessage

func (*Evidence) ProtoMessage()

func (*Evidence) Reset

func (m *Evidence) Reset()

func (*Evidence) Size added in v0.22.5

func (m *Evidence) Size() (n int)

func (*Evidence) String

func (m *Evidence) String() string

func (*Evidence) Unmarshal added in v0.22.5

func (m *Evidence) Unmarshal(dAtA []byte) error

type GRPCApplication

type GRPCApplication struct {
	// contains filtered or unexported fields
}

GRPCApplication is a GRPC wrapper for Application

func NewGRPCApplication

func NewGRPCApplication(app Application) *GRPCApplication

func (*GRPCApplication) BeginBlock

func (*GRPCApplication) CheckTx

func (app *GRPCApplication) CheckTx(ctx context.Context, req *RequestCheckTx) (*ResponseCheckTx, error)

func (*GRPCApplication) Commit

func (app *GRPCApplication) Commit(ctx context.Context, req *RequestCommit) (*ResponseCommit, error)

func (*GRPCApplication) DeliverTx

func (*GRPCApplication) Echo

func (app *GRPCApplication) Echo(ctx context.Context, req *RequestEcho) (*ResponseEcho, error)

func (*GRPCApplication) EndBlock

func (*GRPCApplication) Flush

func (app *GRPCApplication) Flush(ctx context.Context, req *RequestFlush) (*ResponseFlush, error)

func (*GRPCApplication) Info

func (app *GRPCApplication) Info(ctx context.Context, req *RequestInfo) (*ResponseInfo, error)

func (*GRPCApplication) InitChain

func (*GRPCApplication) Query

func (app *GRPCApplication) Query(ctx context.Context, req *RequestQuery) (*ResponseQuery, error)

func (*GRPCApplication) SetOption

type Header struct {
	// basics
	ChainID string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Height  int64  `protobuf:"varint,2,opt,name=height,proto3" json:"height,omitempty"`
	Time    int64  `protobuf:"varint,3,opt,name=time,proto3" json:"time,omitempty"`
	// txs
	NumTxs   int32 `protobuf:"varint,4,opt,name=num_txs,json=numTxs,proto3" json:"num_txs,omitempty"`
	TotalTxs int64 `protobuf:"varint,5,opt,name=total_txs,json=totalTxs,proto3" json:"total_txs,omitempty"`
	// hashes
	LastBlockHash  []byte `protobuf:"bytes,6,opt,name=last_block_hash,json=lastBlockHash,proto3" json:"last_block_hash,omitempty"`
	ValidatorsHash []byte `protobuf:"bytes,7,opt,name=validators_hash,json=validatorsHash,proto3" json:"validators_hash,omitempty"`
	AppHash        []byte `protobuf:"bytes,8,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"`
	// consensus
	Proposer Validator `protobuf:"bytes,9,opt,name=proposer" json:"proposer"`
}

just the minimum the app might need

func NewPopulatedHeader added in v0.22.5

func NewPopulatedHeader(r randyTypes, easy bool) *Header

func (*Header) Descriptor

func (*Header) Descriptor() ([]byte, []int)

func (*Header) Equal added in v0.22.5

func (this *Header) Equal(that interface{}) bool

func (*Header) GetAppHash

func (m *Header) GetAppHash() []byte

func (*Header) GetChainID

func (m *Header) GetChainID() string

func (*Header) GetHeight

func (m *Header) GetHeight() int64

func (*Header) GetLastBlockHash

func (m *Header) GetLastBlockHash() []byte

func (*Header) GetNumTxs

func (m *Header) GetNumTxs() int32

func (*Header) GetProposer

func (m *Header) GetProposer() Validator

func (*Header) GetTime

func (m *Header) GetTime() int64

func (*Header) GetTotalTxs

func (m *Header) GetTotalTxs() int64

func (*Header) GetValidatorsHash

func (m *Header) GetValidatorsHash() []byte

func (*Header) Marshal added in v0.22.5

func (m *Header) Marshal() (dAtA []byte, err error)

func (*Header) MarshalTo added in v0.22.5

func (m *Header) MarshalTo(dAtA []byte) (int, error)

func (*Header) ProtoMessage

func (*Header) ProtoMessage()

func (*Header) Reset

func (m *Header) Reset()

func (*Header) Size added in v0.22.5

func (m *Header) Size() (n int)

func (*Header) String

func (m *Header) String() string

func (*Header) Unmarshal added in v0.22.5

func (m *Header) Unmarshal(dAtA []byte) error

type PubKey

type PubKey struct {
	Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
}

func NewPopulatedPubKey added in v0.22.5

func NewPopulatedPubKey(r randyTypes, easy bool) *PubKey

func (*PubKey) Descriptor

func (*PubKey) Descriptor() ([]byte, []int)

func (*PubKey) Equal added in v0.22.5

func (this *PubKey) Equal(that interface{}) bool

func (*PubKey) GetData

func (m *PubKey) GetData() []byte

func (*PubKey) GetType

func (m *PubKey) GetType() string

func (*PubKey) Marshal added in v0.22.5

func (m *PubKey) Marshal() (dAtA []byte, err error)

func (*PubKey) MarshalTo added in v0.22.5

func (m *PubKey) MarshalTo(dAtA []byte) (int, error)

func (*PubKey) ProtoMessage

func (*PubKey) ProtoMessage()

func (*PubKey) Reset

func (m *PubKey) Reset()

func (*PubKey) Size added in v0.22.5

func (m *PubKey) Size() (n int)

func (*PubKey) String

func (m *PubKey) String() string

func (*PubKey) Unmarshal added in v0.22.5

func (m *PubKey) Unmarshal(dAtA []byte) error

type Request

type Request struct {
	// Types that are valid to be assigned to Value:
	//	*Request_Echo
	//	*Request_Flush
	//	*Request_Info
	//	*Request_SetOption
	//	*Request_InitChain
	//	*Request_Query
	//	*Request_BeginBlock
	//	*Request_CheckTx
	//	*Request_DeliverTx
	//	*Request_EndBlock
	//	*Request_Commit
	Value isRequest_Value `protobuf_oneof:"value"`
}

func NewPopulatedRequest added in v0.22.5

func NewPopulatedRequest(r randyTypes, easy bool) *Request

func ToRequestBeginBlock

func ToRequestBeginBlock(req RequestBeginBlock) *Request

func ToRequestCheckTx

func ToRequestCheckTx(tx []byte) *Request

func ToRequestCommit

func ToRequestCommit() *Request

func ToRequestDeliverTx

func ToRequestDeliverTx(tx []byte) *Request

func ToRequestEcho

func ToRequestEcho(message string) *Request

func ToRequestEndBlock

func ToRequestEndBlock(req RequestEndBlock) *Request

func ToRequestFlush

func ToRequestFlush() *Request

func ToRequestInfo

func ToRequestInfo(req RequestInfo) *Request

func ToRequestInitChain

func ToRequestInitChain(req RequestInitChain) *Request

func ToRequestQuery

func ToRequestQuery(req RequestQuery) *Request

func ToRequestSetOption

func ToRequestSetOption(req RequestSetOption) *Request

func (*Request) Descriptor

func (*Request) Descriptor() ([]byte, []int)

func (*Request) Equal added in v0.22.5

func (this *Request) Equal(that interface{}) bool

func (*Request) GetBeginBlock

func (m *Request) GetBeginBlock() *RequestBeginBlock

func (*Request) GetCheckTx

func (m *Request) GetCheckTx() *RequestCheckTx

func (*Request) GetCommit

func (m *Request) GetCommit() *RequestCommit

func (*Request) GetDeliverTx

func (m *Request) GetDeliverTx() *RequestDeliverTx

func (*Request) GetEcho

func (m *Request) GetEcho() *RequestEcho

func (*Request) GetEndBlock

func (m *Request) GetEndBlock() *RequestEndBlock

func (*Request) GetFlush

func (m *Request) GetFlush() *RequestFlush

func (*Request) GetInfo

func (m *Request) GetInfo() *RequestInfo

func (*Request) GetInitChain

func (m *Request) GetInitChain() *RequestInitChain

func (*Request) GetQuery

func (m *Request) GetQuery() *RequestQuery

func (*Request) GetSetOption

func (m *Request) GetSetOption() *RequestSetOption

func (*Request) GetValue

func (m *Request) GetValue() isRequest_Value

func (*Request) Marshal added in v0.22.5

func (m *Request) Marshal() (dAtA []byte, err error)

func (*Request) MarshalTo added in v0.22.5

func (m *Request) MarshalTo(dAtA []byte) (int, error)

func (*Request) ProtoMessage

func (*Request) ProtoMessage()

func (*Request) Reset

func (m *Request) Reset()

func (*Request) Size added in v0.22.5

func (m *Request) Size() (n int)

func (*Request) String

func (m *Request) String() string

func (*Request) Unmarshal added in v0.22.5

func (m *Request) Unmarshal(dAtA []byte) error

func (*Request) XXX_OneofFuncs

func (*Request) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

type RequestBeginBlock

type RequestBeginBlock struct {
	Hash                []byte             `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	Header              Header             `protobuf:"bytes,2,opt,name=header" json:"header"`
	Validators          []SigningValidator `protobuf:"bytes,3,rep,name=validators" json:"validators"`
	ByzantineValidators []Evidence         `protobuf:"bytes,4,rep,name=byzantine_validators,json=byzantineValidators" json:"byzantine_validators"`
}

func NewPopulatedRequestBeginBlock added in v0.22.5

func NewPopulatedRequestBeginBlock(r randyTypes, easy bool) *RequestBeginBlock

func (*RequestBeginBlock) Descriptor

func (*RequestBeginBlock) Descriptor() ([]byte, []int)

func (*RequestBeginBlock) Equal added in v0.22.5

func (this *RequestBeginBlock) Equal(that interface{}) bool

func (*RequestBeginBlock) GetByzantineValidators

func (m *RequestBeginBlock) GetByzantineValidators() []Evidence

func (*RequestBeginBlock) GetHash

func (m *RequestBeginBlock) GetHash() []byte

func (*RequestBeginBlock) GetHeader

func (m *RequestBeginBlock) GetHeader() Header

func (*RequestBeginBlock) GetValidators

func (m *RequestBeginBlock) GetValidators() []SigningValidator

func (*RequestBeginBlock) Marshal added in v0.22.5

func (m *RequestBeginBlock) Marshal() (dAtA []byte, err error)

func (*RequestBeginBlock) MarshalTo added in v0.22.5

func (m *RequestBeginBlock) MarshalTo(dAtA []byte) (int, error)

func (*RequestBeginBlock) ProtoMessage

func (*RequestBeginBlock) ProtoMessage()

func (*RequestBeginBlock) Reset

func (m *RequestBeginBlock) Reset()

func (*RequestBeginBlock) Size added in v0.22.5

func (m *RequestBeginBlock) Size() (n int)

func (*RequestBeginBlock) String

func (m *RequestBeginBlock) String() string

func (*RequestBeginBlock) Unmarshal added in v0.22.5

func (m *RequestBeginBlock) Unmarshal(dAtA []byte) error

type RequestCheckTx

type RequestCheckTx struct {
	Tx []byte `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,omitempty"`
}

func NewPopulatedRequestCheckTx added in v0.22.5

func NewPopulatedRequestCheckTx(r randyTypes, easy bool) *RequestCheckTx

func (*RequestCheckTx) Descriptor

func (*RequestCheckTx) Descriptor() ([]byte, []int)

func (*RequestCheckTx) Equal added in v0.22.5

func (this *RequestCheckTx) Equal(that interface{}) bool

func (*RequestCheckTx) GetTx

func (m *RequestCheckTx) GetTx() []byte

func (*RequestCheckTx) Marshal added in v0.22.5

func (m *RequestCheckTx) Marshal() (dAtA []byte, err error)

func (*RequestCheckTx) MarshalTo added in v0.22.5

func (m *RequestCheckTx) MarshalTo(dAtA []byte) (int, error)

func (*RequestCheckTx) ProtoMessage

func (*RequestCheckTx) ProtoMessage()

func (*RequestCheckTx) Reset

func (m *RequestCheckTx) Reset()

func (*RequestCheckTx) Size added in v0.22.5

func (m *RequestCheckTx) Size() (n int)

func (*RequestCheckTx) String

func (m *RequestCheckTx) String() string

func (*RequestCheckTx) Unmarshal added in v0.22.5

func (m *RequestCheckTx) Unmarshal(dAtA []byte) error

type RequestCommit

type RequestCommit struct {
}

func NewPopulatedRequestCommit added in v0.22.5

func NewPopulatedRequestCommit(r randyTypes, easy bool) *RequestCommit

func (*RequestCommit) Descriptor

func (*RequestCommit) Descriptor() ([]byte, []int)

func (*RequestCommit) Equal added in v0.22.5

func (this *RequestCommit) Equal(that interface{}) bool

func (*RequestCommit) Marshal added in v0.22.5

func (m *RequestCommit) Marshal() (dAtA []byte, err error)

func (*RequestCommit) MarshalTo added in v0.22.5

func (m *RequestCommit) MarshalTo(dAtA []byte) (int, error)

func (*RequestCommit) ProtoMessage

func (*RequestCommit) ProtoMessage()

func (*RequestCommit) Reset

func (m *RequestCommit) Reset()

func (*RequestCommit) Size added in v0.22.5

func (m *RequestCommit) Size() (n int)

func (*RequestCommit) String

func (m *RequestCommit) String() string

func (*RequestCommit) Unmarshal added in v0.22.5

func (m *RequestCommit) Unmarshal(dAtA []byte) error

type RequestDeliverTx

type RequestDeliverTx struct {
	Tx []byte `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,omitempty"`
}

func NewPopulatedRequestDeliverTx added in v0.22.5

func NewPopulatedRequestDeliverTx(r randyTypes, easy bool) *RequestDeliverTx

func (*RequestDeliverTx) Descriptor

func (*RequestDeliverTx) Descriptor() ([]byte, []int)

func (*RequestDeliverTx) Equal added in v0.22.5

func (this *RequestDeliverTx) Equal(that interface{}) bool

func (*RequestDeliverTx) GetTx

func (m *RequestDeliverTx) GetTx() []byte

func (*RequestDeliverTx) Marshal added in v0.22.5

func (m *RequestDeliverTx) Marshal() (dAtA []byte, err error)

func (*RequestDeliverTx) MarshalTo added in v0.22.5

func (m *RequestDeliverTx) MarshalTo(dAtA []byte) (int, error)

func (*RequestDeliverTx) ProtoMessage

func (*RequestDeliverTx) ProtoMessage()

func (*RequestDeliverTx) Reset

func (m *RequestDeliverTx) Reset()

func (*RequestDeliverTx) Size added in v0.22.5

func (m *RequestDeliverTx) Size() (n int)

func (*RequestDeliverTx) String

func (m *RequestDeliverTx) String() string

func (*RequestDeliverTx) Unmarshal added in v0.22.5

func (m *RequestDeliverTx) Unmarshal(dAtA []byte) error

type RequestEcho

type RequestEcho struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
}

func NewPopulatedRequestEcho added in v0.22.5

func NewPopulatedRequestEcho(r randyTypes, easy bool) *RequestEcho

func (*RequestEcho) Descriptor

func (*RequestEcho) Descriptor() ([]byte, []int)

func (*RequestEcho) Equal added in v0.22.5

func (this *RequestEcho) Equal(that interface{}) bool

func (*RequestEcho) GetMessage

func (m *RequestEcho) GetMessage() string

func (*RequestEcho) Marshal added in v0.22.5

func (m *RequestEcho) Marshal() (dAtA []byte, err error)

func (*RequestEcho) MarshalTo added in v0.22.5

func (m *RequestEcho) MarshalTo(dAtA []byte) (int, error)

func (*RequestEcho) ProtoMessage

func (*RequestEcho) ProtoMessage()

func (*RequestEcho) Reset

func (m *RequestEcho) Reset()

func (*RequestEcho) Size added in v0.22.5

func (m *RequestEcho) Size() (n int)

func (*RequestEcho) String

func (m *RequestEcho) String() string

func (*RequestEcho) Unmarshal added in v0.22.5

func (m *RequestEcho) Unmarshal(dAtA []byte) error

type RequestEndBlock

type RequestEndBlock struct {
	Height int64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
}

func NewPopulatedRequestEndBlock added in v0.22.5

func NewPopulatedRequestEndBlock(r randyTypes, easy bool) *RequestEndBlock

func (*RequestEndBlock) Descriptor

func (*RequestEndBlock) Descriptor() ([]byte, []int)

func (*RequestEndBlock) Equal added in v0.22.5

func (this *RequestEndBlock) Equal(that interface{}) bool

func (*RequestEndBlock) GetHeight

func (m *RequestEndBlock) GetHeight() int64

func (*RequestEndBlock) Marshal added in v0.22.5

func (m *RequestEndBlock) Marshal() (dAtA []byte, err error)

func (*RequestEndBlock) MarshalTo added in v0.22.5

func (m *RequestEndBlock) MarshalTo(dAtA []byte) (int, error)

func (*RequestEndBlock) ProtoMessage

func (*RequestEndBlock) ProtoMessage()

func (*RequestEndBlock) Reset

func (m *RequestEndBlock) Reset()

func (*RequestEndBlock) Size added in v0.22.5

func (m *RequestEndBlock) Size() (n int)

func (*RequestEndBlock) String

func (m *RequestEndBlock) String() string

func (*RequestEndBlock) Unmarshal added in v0.22.5

func (m *RequestEndBlock) Unmarshal(dAtA []byte) error

type RequestFlush

type RequestFlush struct {
}

func NewPopulatedRequestFlush added in v0.22.5

func NewPopulatedRequestFlush(r randyTypes, easy bool) *RequestFlush

func (*RequestFlush) Descriptor

func (*RequestFlush) Descriptor() ([]byte, []int)

func (*RequestFlush) Equal added in v0.22.5

func (this *RequestFlush) Equal(that interface{}) bool

func (*RequestFlush) Marshal added in v0.22.5

func (m *RequestFlush) Marshal() (dAtA []byte, err error)

func (*RequestFlush) MarshalTo added in v0.22.5

func (m *RequestFlush) MarshalTo(dAtA []byte) (int, error)

func (*RequestFlush) ProtoMessage

func (*RequestFlush) ProtoMessage()

func (*RequestFlush) Reset

func (m *RequestFlush) Reset()

func (*RequestFlush) Size added in v0.22.5

func (m *RequestFlush) Size() (n int)

func (*RequestFlush) String

func (m *RequestFlush) String() string

func (*RequestFlush) Unmarshal added in v0.22.5

func (m *RequestFlush) Unmarshal(dAtA []byte) error

type RequestInfo

type RequestInfo struct {
	Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
}

func NewPopulatedRequestInfo added in v0.22.5

func NewPopulatedRequestInfo(r randyTypes, easy bool) *RequestInfo

func (*RequestInfo) Descriptor

func (*RequestInfo) Descriptor() ([]byte, []int)

func (*RequestInfo) Equal added in v0.22.5

func (this *RequestInfo) Equal(that interface{}) bool

func (*RequestInfo) GetVersion

func (m *RequestInfo) GetVersion() string

func (*RequestInfo) Marshal added in v0.22.5

func (m *RequestInfo) Marshal() (dAtA []byte, err error)

func (*RequestInfo) MarshalTo added in v0.22.5

func (m *RequestInfo) MarshalTo(dAtA []byte) (int, error)

func (*RequestInfo) ProtoMessage

func (*RequestInfo) ProtoMessage()

func (*RequestInfo) Reset

func (m *RequestInfo) Reset()

func (*RequestInfo) Size added in v0.22.5

func (m *RequestInfo) Size() (n int)

func (*RequestInfo) String

func (m *RequestInfo) String() string

func (*RequestInfo) Unmarshal added in v0.22.5

func (m *RequestInfo) Unmarshal(dAtA []byte) error

type RequestInitChain

type RequestInitChain struct {
	Time            int64            `protobuf:"varint,1,opt,name=time,proto3" json:"time,omitempty"`
	ChainId         string           `protobuf:"bytes,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	ConsensusParams *ConsensusParams `protobuf:"bytes,3,opt,name=consensus_params,json=consensusParams" json:"consensus_params,omitempty"`
	Validators      []Validator      `protobuf:"bytes,4,rep,name=validators" json:"validators"`
	AppStateBytes   []byte           `protobuf:"bytes,5,opt,name=app_state_bytes,json=appStateBytes,proto3" json:"app_state_bytes,omitempty"`
}

func NewPopulatedRequestInitChain added in v0.22.5

func NewPopulatedRequestInitChain(r randyTypes, easy bool) *RequestInitChain

func (*RequestInitChain) Descriptor

func (*RequestInitChain) Descriptor() ([]byte, []int)

func (*RequestInitChain) Equal added in v0.22.5

func (this *RequestInitChain) Equal(that interface{}) bool

func (*RequestInitChain) GetAppStateBytes

func (m *RequestInitChain) GetAppStateBytes() []byte

func (*RequestInitChain) GetChainId

func (m *RequestInitChain) GetChainId() string

func (*RequestInitChain) GetConsensusParams

func (m *RequestInitChain) GetConsensusParams() *ConsensusParams

func (*RequestInitChain) GetTime

func (m *RequestInitChain) GetTime() int64

func (*RequestInitChain) GetValidators

func (m *RequestInitChain) GetValidators() []Validator

func (*RequestInitChain) Marshal added in v0.22.5

func (m *RequestInitChain) Marshal() (dAtA []byte, err error)

func (*RequestInitChain) MarshalTo added in v0.22.5

func (m *RequestInitChain) MarshalTo(dAtA []byte) (int, error)

func (*RequestInitChain) ProtoMessage

func (*RequestInitChain) ProtoMessage()

func (*RequestInitChain) Reset

func (m *RequestInitChain) Reset()

func (*RequestInitChain) Size added in v0.22.5

func (m *RequestInitChain) Size() (n int)

func (*RequestInitChain) String

func (m *RequestInitChain) String() string

func (*RequestInitChain) Unmarshal added in v0.22.5

func (m *RequestInitChain) Unmarshal(dAtA []byte) error

type RequestQuery

type RequestQuery struct {
	Data   []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Path   string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Height int64  `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"`
	Prove  bool   `protobuf:"varint,4,opt,name=prove,proto3" json:"prove,omitempty"`
}

func NewPopulatedRequestQuery added in v0.22.5

func NewPopulatedRequestQuery(r randyTypes, easy bool) *RequestQuery

func (*RequestQuery) Descriptor

func (*RequestQuery) Descriptor() ([]byte, []int)

func (*RequestQuery) Equal added in v0.22.5

func (this *RequestQuery) Equal(that interface{}) bool

func (*RequestQuery) GetData

func (m *RequestQuery) GetData() []byte

func (*RequestQuery) GetHeight

func (m *RequestQuery) GetHeight() int64

func (*RequestQuery) GetPath

func (m *RequestQuery) GetPath() string

func (*RequestQuery) GetProve

func (m *RequestQuery) GetProve() bool

func (*RequestQuery) Marshal added in v0.22.5

func (m *RequestQuery) Marshal() (dAtA []byte, err error)

func (*RequestQuery) MarshalTo added in v0.22.5

func (m *RequestQuery) MarshalTo(dAtA []byte) (int, error)

func (*RequestQuery) ProtoMessage

func (*RequestQuery) ProtoMessage()

func (*RequestQuery) Reset

func (m *RequestQuery) Reset()

func (*RequestQuery) Size added in v0.22.5

func (m *RequestQuery) Size() (n int)

func (*RequestQuery) String

func (m *RequestQuery) String() string

func (*RequestQuery) Unmarshal added in v0.22.5

func (m *RequestQuery) Unmarshal(dAtA []byte) error

type RequestSetOption

type RequestSetOption struct {
	Key   string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
}

nondeterministic

func NewPopulatedRequestSetOption added in v0.22.5

func NewPopulatedRequestSetOption(r randyTypes, easy bool) *RequestSetOption

func (*RequestSetOption) Descriptor

func (*RequestSetOption) Descriptor() ([]byte, []int)

func (*RequestSetOption) Equal added in v0.22.5

func (this *RequestSetOption) Equal(that interface{}) bool

func (*RequestSetOption) GetKey

func (m *RequestSetOption) GetKey() string

func (*RequestSetOption) GetValue

func (m *RequestSetOption) GetValue() string

func (*RequestSetOption) Marshal added in v0.22.5

func (m *RequestSetOption) Marshal() (dAtA []byte, err error)

func (*RequestSetOption) MarshalTo added in v0.22.5

func (m *RequestSetOption) MarshalTo(dAtA []byte) (int, error)

func (*RequestSetOption) ProtoMessage

func (*RequestSetOption) ProtoMessage()

func (*RequestSetOption) Reset

func (m *RequestSetOption) Reset()

func (*RequestSetOption) Size added in v0.22.5

func (m *RequestSetOption) Size() (n int)

func (*RequestSetOption) String

func (m *RequestSetOption) String() string

func (*RequestSetOption) Unmarshal added in v0.22.5

func (m *RequestSetOption) Unmarshal(dAtA []byte) error

type Request_BeginBlock

type Request_BeginBlock struct {
	BeginBlock *RequestBeginBlock `protobuf:"bytes,8,opt,name=begin_block,json=beginBlock,oneof"`
}

func NewPopulatedRequest_BeginBlock added in v0.22.5

func NewPopulatedRequest_BeginBlock(r randyTypes, easy bool) *Request_BeginBlock

func (*Request_BeginBlock) Equal added in v0.22.5

func (this *Request_BeginBlock) Equal(that interface{}) bool

func (*Request_BeginBlock) MarshalTo added in v0.22.5

func (m *Request_BeginBlock) MarshalTo(dAtA []byte) (int, error)

func (*Request_BeginBlock) Size added in v0.22.5

func (m *Request_BeginBlock) Size() (n int)

type Request_CheckTx

type Request_CheckTx struct {
	CheckTx *RequestCheckTx `protobuf:"bytes,9,opt,name=check_tx,json=checkTx,oneof"`
}

func NewPopulatedRequest_CheckTx added in v0.22.5

func NewPopulatedRequest_CheckTx(r randyTypes, easy bool) *Request_CheckTx

func (*Request_CheckTx) Equal added in v0.22.5

func (this *Request_CheckTx) Equal(that interface{}) bool

func (*Request_CheckTx) MarshalTo added in v0.22.5

func (m *Request_CheckTx) MarshalTo(dAtA []byte) (int, error)

func (*Request_CheckTx) Size added in v0.22.5

func (m *Request_CheckTx) Size() (n int)

type Request_Commit

type Request_Commit struct {
	Commit *RequestCommit `protobuf:"bytes,12,opt,name=commit,oneof"`
}

func NewPopulatedRequest_Commit added in v0.22.5

func NewPopulatedRequest_Commit(r randyTypes, easy bool) *Request_Commit

func (*Request_Commit) Equal added in v0.22.5

func (this *Request_Commit) Equal(that interface{}) bool

func (*Request_Commit) MarshalTo added in v0.22.5

func (m *Request_Commit) MarshalTo(dAtA []byte) (int, error)

func (*Request_Commit) Size added in v0.22.5

func (m *Request_Commit) Size() (n int)

type Request_DeliverTx

type Request_DeliverTx struct {
	DeliverTx *RequestDeliverTx `protobuf:"bytes,19,opt,name=deliver_tx,json=deliverTx,oneof"`
}

func NewPopulatedRequest_DeliverTx added in v0.22.5

func NewPopulatedRequest_DeliverTx(r randyTypes, easy bool) *Request_DeliverTx

func (*Request_DeliverTx) Equal added in v0.22.5

func (this *Request_DeliverTx) Equal(that interface{}) bool

func (*Request_DeliverTx) MarshalTo added in v0.22.5

func (m *Request_DeliverTx) MarshalTo(dAtA []byte) (int, error)

func (*Request_DeliverTx) Size added in v0.22.5

func (m *Request_DeliverTx) Size() (n int)

type Request_Echo

type Request_Echo struct {
	Echo *RequestEcho `protobuf:"bytes,2,opt,name=echo,oneof"`
}

func NewPopulatedRequest_Echo added in v0.22.5

func NewPopulatedRequest_Echo(r randyTypes, easy bool) *Request_Echo

func (*Request_Echo) Equal added in v0.22.5

func (this *Request_Echo) Equal(that interface{}) bool

func (*Request_Echo) MarshalTo added in v0.22.5

func (m *Request_Echo) MarshalTo(dAtA []byte) (int, error)

func (*Request_Echo) Size added in v0.22.5

func (m *Request_Echo) Size() (n int)

type Request_EndBlock

type Request_EndBlock struct {
	EndBlock *RequestEndBlock `protobuf:"bytes,11,opt,name=end_block,json=endBlock,oneof"`
}

func NewPopulatedRequest_EndBlock added in v0.22.5

func NewPopulatedRequest_EndBlock(r randyTypes, easy bool) *Request_EndBlock

func (*Request_EndBlock) Equal added in v0.22.5

func (this *Request_EndBlock) Equal(that interface{}) bool

func (*Request_EndBlock) MarshalTo added in v0.22.5

func (m *Request_EndBlock) MarshalTo(dAtA []byte) (int, error)

func (*Request_EndBlock) Size added in v0.22.5

func (m *Request_EndBlock) Size() (n int)

type Request_Flush

type Request_Flush struct {
	Flush *RequestFlush `protobuf:"bytes,3,opt,name=flush,oneof"`
}

func NewPopulatedRequest_Flush added in v0.22.5

func NewPopulatedRequest_Flush(r randyTypes, easy bool) *Request_Flush

func (*Request_Flush) Equal added in v0.22.5

func (this *Request_Flush) Equal(that interface{}) bool

func (*Request_Flush) MarshalTo added in v0.22.5

func (m *Request_Flush) MarshalTo(dAtA []byte) (int, error)

func (*Request_Flush) Size added in v0.22.5

func (m *Request_Flush) Size() (n int)

type Request_Info

type Request_Info struct {
	Info *RequestInfo `protobuf:"bytes,4,opt,name=info,oneof"`
}

func NewPopulatedRequest_Info added in v0.22.5

func NewPopulatedRequest_Info(r randyTypes, easy bool) *Request_Info

func (*Request_Info) Equal added in v0.22.5

func (this *Request_Info) Equal(that interface{}) bool

func (*Request_Info) MarshalTo added in v0.22.5

func (m *Request_Info) MarshalTo(dAtA []byte) (int, error)

func (*Request_Info) Size added in v0.22.5

func (m *Request_Info) Size() (n int)

type Request_InitChain

type Request_InitChain struct {
	InitChain *RequestInitChain `protobuf:"bytes,6,opt,name=init_chain,json=initChain,oneof"`
}

func NewPopulatedRequest_InitChain added in v0.22.5

func NewPopulatedRequest_InitChain(r randyTypes, easy bool) *Request_InitChain

func (*Request_InitChain) Equal added in v0.22.5

func (this *Request_InitChain) Equal(that interface{}) bool

func (*Request_InitChain) MarshalTo added in v0.22.5

func (m *Request_InitChain) MarshalTo(dAtA []byte) (int, error)

func (*Request_InitChain) Size added in v0.22.5

func (m *Request_InitChain) Size() (n int)

type Request_Query

type Request_Query struct {
	Query *RequestQuery `protobuf:"bytes,7,opt,name=query,oneof"`
}

func NewPopulatedRequest_Query added in v0.22.5

func NewPopulatedRequest_Query(r randyTypes, easy bool) *Request_Query

func (*Request_Query) Equal added in v0.22.5

func (this *Request_Query) Equal(that interface{}) bool

func (*Request_Query) MarshalTo added in v0.22.5

func (m *Request_Query) MarshalTo(dAtA []byte) (int, error)

func (*Request_Query) Size added in v0.22.5

func (m *Request_Query) Size() (n int)

type Request_SetOption

type Request_SetOption struct {
	SetOption *RequestSetOption `protobuf:"bytes,5,opt,name=set_option,json=setOption,oneof"`
}

func NewPopulatedRequest_SetOption added in v0.22.5

func NewPopulatedRequest_SetOption(r randyTypes, easy bool) *Request_SetOption

func (*Request_SetOption) Equal added in v0.22.5

func (this *Request_SetOption) Equal(that interface{}) bool

func (*Request_SetOption) MarshalTo added in v0.22.5

func (m *Request_SetOption) MarshalTo(dAtA []byte) (int, error)

func (*Request_SetOption) Size added in v0.22.5

func (m *Request_SetOption) Size() (n int)

type Response

type Response struct {
	// Types that are valid to be assigned to Value:
	//	*Response_Exception
	//	*Response_Echo
	//	*Response_Flush
	//	*Response_Info
	//	*Response_SetOption
	//	*Response_InitChain
	//	*Response_Query
	//	*Response_BeginBlock
	//	*Response_CheckTx
	//	*Response_DeliverTx
	//	*Response_EndBlock
	//	*Response_Commit
	Value isResponse_Value `protobuf_oneof:"value"`
}

func NewPopulatedResponse added in v0.22.5

func NewPopulatedResponse(r randyTypes, easy bool) *Response

func ToResponseBeginBlock

func ToResponseBeginBlock(res ResponseBeginBlock) *Response

func ToResponseCheckTx

func ToResponseCheckTx(res ResponseCheckTx) *Response

func ToResponseCommit

func ToResponseCommit(res ResponseCommit) *Response

func ToResponseDeliverTx

func ToResponseDeliverTx(res ResponseDeliverTx) *Response

func ToResponseEcho

func ToResponseEcho(message string) *Response

func ToResponseEndBlock

func ToResponseEndBlock(res ResponseEndBlock) *Response

func ToResponseException

func ToResponseException(errStr string) *Response

func ToResponseFlush

func ToResponseFlush() *Response

func ToResponseInfo

func ToResponseInfo(res ResponseInfo) *Response

func ToResponseInitChain

func ToResponseInitChain(res ResponseInitChain) *Response

func ToResponseQuery

func ToResponseQuery(res ResponseQuery) *Response

func ToResponseSetOption

func ToResponseSetOption(res ResponseSetOption) *Response

func (*Response) Descriptor

func (*Response) Descriptor() ([]byte, []int)

func (*Response) Equal added in v0.22.5

func (this *Response) Equal(that interface{}) bool

func (*Response) GetBeginBlock

func (m *Response) GetBeginBlock() *ResponseBeginBlock

func (*Response) GetCheckTx

func (m *Response) GetCheckTx() *ResponseCheckTx

func (*Response) GetCommit

func (m *Response) GetCommit() *ResponseCommit

func (*Response) GetDeliverTx

func (m *Response) GetDeliverTx() *ResponseDeliverTx

func (*Response) GetEcho

func (m *Response) GetEcho() *ResponseEcho

func (*Response) GetEndBlock

func (m *Response) GetEndBlock() *ResponseEndBlock

func (*Response) GetException

func (m *Response) GetException() *ResponseException

func (*Response) GetFlush

func (m *Response) GetFlush() *ResponseFlush

func (*Response) GetInfo

func (m *Response) GetInfo() *ResponseInfo

func (*Response) GetInitChain

func (m *Response) GetInitChain() *ResponseInitChain

func (*Response) GetQuery

func (m *Response) GetQuery() *ResponseQuery

func (*Response) GetSetOption

func (m *Response) GetSetOption() *ResponseSetOption

func (*Response) GetValue

func (m *Response) GetValue() isResponse_Value

func (*Response) Marshal added in v0.22.5

func (m *Response) Marshal() (dAtA []byte, err error)

func (*Response) MarshalTo added in v0.22.5

func (m *Response) MarshalTo(dAtA []byte) (int, error)

func (*Response) ProtoMessage

func (*Response) ProtoMessage()

func (*Response) Reset

func (m *Response) Reset()

func (*Response) Size added in v0.22.5

func (m *Response) Size() (n int)

func (*Response) String

func (m *Response) String() string

func (*Response) Unmarshal added in v0.22.5

func (m *Response) Unmarshal(dAtA []byte) error

func (*Response) XXX_OneofFuncs

func (*Response) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

type ResponseBeginBlock

type ResponseBeginBlock struct {
	Tags []common.KVPair `protobuf:"bytes,1,rep,name=tags" json:"tags,omitempty"`
}

func NewPopulatedResponseBeginBlock added in v0.22.5

func NewPopulatedResponseBeginBlock(r randyTypes, easy bool) *ResponseBeginBlock

func (*ResponseBeginBlock) Descriptor

func (*ResponseBeginBlock) Descriptor() ([]byte, []int)

func (*ResponseBeginBlock) Equal added in v0.22.5

func (this *ResponseBeginBlock) Equal(that interface{}) bool

func (*ResponseBeginBlock) GetTags

func (m *ResponseBeginBlock) GetTags() []common.KVPair

func (*ResponseBeginBlock) Marshal added in v0.22.5

func (m *ResponseBeginBlock) Marshal() (dAtA []byte, err error)

func (*ResponseBeginBlock) MarshalTo added in v0.22.5

func (m *ResponseBeginBlock) MarshalTo(dAtA []byte) (int, error)

func (*ResponseBeginBlock) ProtoMessage

func (*ResponseBeginBlock) ProtoMessage()

func (*ResponseBeginBlock) Reset

func (m *ResponseBeginBlock) Reset()

func (*ResponseBeginBlock) Size added in v0.22.5

func (m *ResponseBeginBlock) Size() (n int)

func (*ResponseBeginBlock) String

func (m *ResponseBeginBlock) String() string

func (*ResponseBeginBlock) Unmarshal added in v0.22.5

func (m *ResponseBeginBlock) Unmarshal(dAtA []byte) error

type ResponseCheckTx

type ResponseCheckTx struct {
	Code      uint32          `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Data      []byte          `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	Log       string          `protobuf:"bytes,3,opt,name=log,proto3" json:"log,omitempty"`
	Info      string          `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"`
	GasWanted int64           `protobuf:"varint,5,opt,name=gas_wanted,json=gasWanted,proto3" json:"gas_wanted,omitempty"`
	GasUsed   int64           `protobuf:"varint,6,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty"`
	Tags      []common.KVPair `protobuf:"bytes,7,rep,name=tags" json:"tags,omitempty"`
	Fee       common.KI64Pair `protobuf:"bytes,8,opt,name=fee" json:"fee"`
}

func NewPopulatedResponseCheckTx added in v0.22.5

func NewPopulatedResponseCheckTx(r randyTypes, easy bool) *ResponseCheckTx

func (*ResponseCheckTx) Descriptor

func (*ResponseCheckTx) Descriptor() ([]byte, []int)

func (*ResponseCheckTx) Equal added in v0.22.5

func (this *ResponseCheckTx) Equal(that interface{}) bool

func (*ResponseCheckTx) GetCode

func (m *ResponseCheckTx) GetCode() uint32

func (*ResponseCheckTx) GetData

func (m *ResponseCheckTx) GetData() []byte

func (*ResponseCheckTx) GetFee

func (m *ResponseCheckTx) GetFee() common.KI64Pair

func (*ResponseCheckTx) GetGasUsed

func (m *ResponseCheckTx) GetGasUsed() int64

func (*ResponseCheckTx) GetGasWanted

func (m *ResponseCheckTx) GetGasWanted() int64

func (*ResponseCheckTx) GetInfo

func (m *ResponseCheckTx) GetInfo() string

func (*ResponseCheckTx) GetLog

func (m *ResponseCheckTx) GetLog() string

func (*ResponseCheckTx) GetTags

func (m *ResponseCheckTx) GetTags() []common.KVPair

func (ResponseCheckTx) IsErr

func (r ResponseCheckTx) IsErr() bool

IsErr returns true if Code is something other than OK.

func (ResponseCheckTx) IsOK

func (r ResponseCheckTx) IsOK() bool

IsOK returns true if Code is OK.

func (*ResponseCheckTx) Marshal added in v0.22.5

func (m *ResponseCheckTx) Marshal() (dAtA []byte, err error)

func (*ResponseCheckTx) MarshalJSON

func (r *ResponseCheckTx) MarshalJSON() ([]byte, error)

func (*ResponseCheckTx) MarshalTo added in v0.22.5

func (m *ResponseCheckTx) MarshalTo(dAtA []byte) (int, error)

func (*ResponseCheckTx) ProtoMessage

func (*ResponseCheckTx) ProtoMessage()

func (*ResponseCheckTx) Reset

func (m *ResponseCheckTx) Reset()

func (*ResponseCheckTx) Size added in v0.22.5

func (m *ResponseCheckTx) Size() (n int)

func (*ResponseCheckTx) String

func (m *ResponseCheckTx) String() string

func (*ResponseCheckTx) Unmarshal added in v0.22.5

func (m *ResponseCheckTx) Unmarshal(dAtA []byte) error

func (*ResponseCheckTx) UnmarshalJSON

func (r *ResponseCheckTx) UnmarshalJSON(b []byte) error

type ResponseCommit

type ResponseCommit struct {
	// reserve 1
	Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
}

func NewPopulatedResponseCommit added in v0.22.5

func NewPopulatedResponseCommit(r randyTypes, easy bool) *ResponseCommit

func (*ResponseCommit) Descriptor

func (*ResponseCommit) Descriptor() ([]byte, []int)

func (*ResponseCommit) Equal added in v0.22.5

func (this *ResponseCommit) Equal(that interface{}) bool

func (*ResponseCommit) GetData

func (m *ResponseCommit) GetData() []byte

func (*ResponseCommit) Marshal added in v0.22.5

func (m *ResponseCommit) Marshal() (dAtA []byte, err error)

func (*ResponseCommit) MarshalJSON

func (r *ResponseCommit) MarshalJSON() ([]byte, error)

func (*ResponseCommit) MarshalTo added in v0.22.5

func (m *ResponseCommit) MarshalTo(dAtA []byte) (int, error)

func (*ResponseCommit) ProtoMessage

func (*ResponseCommit) ProtoMessage()

func (*ResponseCommit) Reset

func (m *ResponseCommit) Reset()

func (*ResponseCommit) Size added in v0.22.5

func (m *ResponseCommit) Size() (n int)

func (*ResponseCommit) String

func (m *ResponseCommit) String() string

func (*ResponseCommit) Unmarshal added in v0.22.5

func (m *ResponseCommit) Unmarshal(dAtA []byte) error

func (*ResponseCommit) UnmarshalJSON

func (r *ResponseCommit) UnmarshalJSON(b []byte) error

type ResponseDeliverTx

type ResponseDeliverTx struct {
	Code      uint32          `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Data      []byte          `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	Log       string          `protobuf:"bytes,3,opt,name=log,proto3" json:"log,omitempty"`
	Info      string          `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"`
	GasWanted int64           `protobuf:"varint,5,opt,name=gas_wanted,json=gasWanted,proto3" json:"gas_wanted,omitempty"`
	GasUsed   int64           `protobuf:"varint,6,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty"`
	Tags      []common.KVPair `protobuf:"bytes,7,rep,name=tags" json:"tags,omitempty"`
	Fee       common.KI64Pair `protobuf:"bytes,8,opt,name=fee" json:"fee"`
}

func NewPopulatedResponseDeliverTx added in v0.22.5

func NewPopulatedResponseDeliverTx(r randyTypes, easy bool) *ResponseDeliverTx

func (*ResponseDeliverTx) Descriptor

func (*ResponseDeliverTx) Descriptor() ([]byte, []int)

func (*ResponseDeliverTx) Equal added in v0.22.5

func (this *ResponseDeliverTx) Equal(that interface{}) bool

func (*ResponseDeliverTx) GetCode

func (m *ResponseDeliverTx) GetCode() uint32

func (*ResponseDeliverTx) GetData

func (m *ResponseDeliverTx) GetData() []byte

func (*ResponseDeliverTx) GetFee

func (m *ResponseDeliverTx) GetFee() common.KI64Pair

func (*ResponseDeliverTx) GetGasUsed

func (m *ResponseDeliverTx) GetGasUsed() int64

func (*ResponseDeliverTx) GetGasWanted

func (m *ResponseDeliverTx) GetGasWanted() int64

func (*ResponseDeliverTx) GetInfo

func (m *ResponseDeliverTx) GetInfo() string

func (*ResponseDeliverTx) GetLog

func (m *ResponseDeliverTx) GetLog() string

func (*ResponseDeliverTx) GetTags

func (m *ResponseDeliverTx) GetTags() []common.KVPair

func (ResponseDeliverTx) IsErr

func (r ResponseDeliverTx) IsErr() bool

IsErr returns true if Code is something other than OK.

func (ResponseDeliverTx) IsOK

func (r ResponseDeliverTx) IsOK() bool

IsOK returns true if Code is OK.

func (*ResponseDeliverTx) Marshal added in v0.22.5

func (m *ResponseDeliverTx) Marshal() (dAtA []byte, err error)

func (*ResponseDeliverTx) MarshalJSON

func (r *ResponseDeliverTx) MarshalJSON() ([]byte, error)

func (*ResponseDeliverTx) MarshalTo added in v0.22.5

func (m *ResponseDeliverTx) MarshalTo(dAtA []byte) (int, error)

func (*ResponseDeliverTx) ProtoMessage

func (*ResponseDeliverTx) ProtoMessage()

func (*ResponseDeliverTx) Reset

func (m *ResponseDeliverTx) Reset()

func (*ResponseDeliverTx) Size added in v0.22.5

func (m *ResponseDeliverTx) Size() (n int)

func (*ResponseDeliverTx) String

func (m *ResponseDeliverTx) String() string

func (*ResponseDeliverTx) Unmarshal added in v0.22.5

func (m *ResponseDeliverTx) Unmarshal(dAtA []byte) error

func (*ResponseDeliverTx) UnmarshalJSON

func (r *ResponseDeliverTx) UnmarshalJSON(b []byte) error

type ResponseEcho

type ResponseEcho struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
}

func NewPopulatedResponseEcho added in v0.22.5

func NewPopulatedResponseEcho(r randyTypes, easy bool) *ResponseEcho

func (*ResponseEcho) Descriptor

func (*ResponseEcho) Descriptor() ([]byte, []int)

func (*ResponseEcho) Equal added in v0.22.5

func (this *ResponseEcho) Equal(that interface{}) bool

func (*ResponseEcho) GetMessage

func (m *ResponseEcho) GetMessage() string

func (*ResponseEcho) Marshal added in v0.22.5

func (m *ResponseEcho) Marshal() (dAtA []byte, err error)

func (*ResponseEcho) MarshalTo added in v0.22.5

func (m *ResponseEcho) MarshalTo(dAtA []byte) (int, error)

func (*ResponseEcho) ProtoMessage

func (*ResponseEcho) ProtoMessage()

func (*ResponseEcho) Reset

func (m *ResponseEcho) Reset()

func (*ResponseEcho) Size added in v0.22.5

func (m *ResponseEcho) Size() (n int)

func (*ResponseEcho) String

func (m *ResponseEcho) String() string

func (*ResponseEcho) Unmarshal added in v0.22.5

func (m *ResponseEcho) Unmarshal(dAtA []byte) error

type ResponseEndBlock

type ResponseEndBlock struct {
	ValidatorUpdates      []Validator      `protobuf:"bytes,1,rep,name=validator_updates,json=validatorUpdates" json:"validator_updates"`
	ConsensusParamUpdates *ConsensusParams `protobuf:"bytes,2,opt,name=consensus_param_updates,json=consensusParamUpdates" json:"consensus_param_updates,omitempty"`
	Tags                  []common.KVPair  `protobuf:"bytes,3,rep,name=tags" json:"tags,omitempty"`
}

func NewPopulatedResponseEndBlock added in v0.22.5

func NewPopulatedResponseEndBlock(r randyTypes, easy bool) *ResponseEndBlock

func (*ResponseEndBlock) Descriptor

func (*ResponseEndBlock) Descriptor() ([]byte, []int)

func (*ResponseEndBlock) Equal added in v0.22.5

func (this *ResponseEndBlock) Equal(that interface{}) bool

func (*ResponseEndBlock) GetConsensusParamUpdates

func (m *ResponseEndBlock) GetConsensusParamUpdates() *ConsensusParams

func (*ResponseEndBlock) GetTags

func (m *ResponseEndBlock) GetTags() []common.KVPair

func (*ResponseEndBlock) GetValidatorUpdates

func (m *ResponseEndBlock) GetValidatorUpdates() []Validator

func (*ResponseEndBlock) Marshal added in v0.22.5

func (m *ResponseEndBlock) Marshal() (dAtA []byte, err error)

func (*ResponseEndBlock) MarshalTo added in v0.22.5

func (m *ResponseEndBlock) MarshalTo(dAtA []byte) (int, error)

func (*ResponseEndBlock) ProtoMessage

func (*ResponseEndBlock) ProtoMessage()

func (*ResponseEndBlock) Reset

func (m *ResponseEndBlock) Reset()

func (*ResponseEndBlock) Size added in v0.22.5

func (m *ResponseEndBlock) Size() (n int)

func (*ResponseEndBlock) String

func (m *ResponseEndBlock) String() string

func (*ResponseEndBlock) Unmarshal added in v0.22.5

func (m *ResponseEndBlock) Unmarshal(dAtA []byte) error

type ResponseException

type ResponseException struct {
	Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
}

nondeterministic

func NewPopulatedResponseException added in v0.22.5

func NewPopulatedResponseException(r randyTypes, easy bool) *ResponseException

func (*ResponseException) Descriptor

func (*ResponseException) Descriptor() ([]byte, []int)

func (*ResponseException) Equal added in v0.22.5

func (this *ResponseException) Equal(that interface{}) bool

func (*ResponseException) GetError

func (m *ResponseException) GetError() string

func (*ResponseException) Marshal added in v0.22.5

func (m *ResponseException) Marshal() (dAtA []byte, err error)

func (*ResponseException) MarshalTo added in v0.22.5

func (m *ResponseException) MarshalTo(dAtA []byte) (int, error)

func (*ResponseException) ProtoMessage

func (*ResponseException) ProtoMessage()

func (*ResponseException) Reset

func (m *ResponseException) Reset()

func (*ResponseException) Size added in v0.22.5

func (m *ResponseException) Size() (n int)

func (*ResponseException) String

func (m *ResponseException) String() string

func (*ResponseException) Unmarshal added in v0.22.5

func (m *ResponseException) Unmarshal(dAtA []byte) error

type ResponseFlush

type ResponseFlush struct {
}

func NewPopulatedResponseFlush added in v0.22.5

func NewPopulatedResponseFlush(r randyTypes, easy bool) *ResponseFlush

func (*ResponseFlush) Descriptor

func (*ResponseFlush) Descriptor() ([]byte, []int)

func (*ResponseFlush) Equal added in v0.22.5

func (this *ResponseFlush) Equal(that interface{}) bool

func (*ResponseFlush) Marshal added in v0.22.5

func (m *ResponseFlush) Marshal() (dAtA []byte, err error)

func (*ResponseFlush) MarshalTo added in v0.22.5

func (m *ResponseFlush) MarshalTo(dAtA []byte) (int, error)

func (*ResponseFlush) ProtoMessage

func (*ResponseFlush) ProtoMessage()

func (*ResponseFlush) Reset

func (m *ResponseFlush) Reset()

func (*ResponseFlush) Size added in v0.22.5

func (m *ResponseFlush) Size() (n int)

func (*ResponseFlush) String

func (m *ResponseFlush) String() string

func (*ResponseFlush) Unmarshal added in v0.22.5

func (m *ResponseFlush) Unmarshal(dAtA []byte) error

type ResponseInfo

type ResponseInfo struct {
	Data             string `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	Version          string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	LastBlockHeight  int64  `protobuf:"varint,3,opt,name=last_block_height,json=lastBlockHeight,proto3" json:"last_block_height,omitempty"`
	LastBlockAppHash []byte `protobuf:"bytes,4,opt,name=last_block_app_hash,json=lastBlockAppHash,proto3" json:"last_block_app_hash,omitempty"`
}

func NewPopulatedResponseInfo added in v0.22.5

func NewPopulatedResponseInfo(r randyTypes, easy bool) *ResponseInfo

func (*ResponseInfo) Descriptor

func (*ResponseInfo) Descriptor() ([]byte, []int)

func (*ResponseInfo) Equal added in v0.22.5

func (this *ResponseInfo) Equal(that interface{}) bool

func (*ResponseInfo) GetData

func (m *ResponseInfo) GetData() string

func (*ResponseInfo) GetLastBlockAppHash

func (m *ResponseInfo) GetLastBlockAppHash() []byte

func (*ResponseInfo) GetLastBlockHeight

func (m *ResponseInfo) GetLastBlockHeight() int64

func (*ResponseInfo) GetVersion

func (m *ResponseInfo) GetVersion() string

func (*ResponseInfo) Marshal added in v0.22.5

func (m *ResponseInfo) Marshal() (dAtA []byte, err error)

func (*ResponseInfo) MarshalTo added in v0.22.5

func (m *ResponseInfo) MarshalTo(dAtA []byte) (int, error)

func (*ResponseInfo) ProtoMessage

func (*ResponseInfo) ProtoMessage()

func (*ResponseInfo) Reset

func (m *ResponseInfo) Reset()

func (*ResponseInfo) Size added in v0.22.5

func (m *ResponseInfo) Size() (n int)

func (*ResponseInfo) String

func (m *ResponseInfo) String() string

func (*ResponseInfo) Unmarshal added in v0.22.5

func (m *ResponseInfo) Unmarshal(dAtA []byte) error

type ResponseInitChain

type ResponseInitChain struct {
	ConsensusParams *ConsensusParams `protobuf:"bytes,1,opt,name=consensus_params,json=consensusParams" json:"consensus_params,omitempty"`
	Validators      []Validator      `protobuf:"bytes,2,rep,name=validators" json:"validators"`
}

func NewPopulatedResponseInitChain added in v0.22.5

func NewPopulatedResponseInitChain(r randyTypes, easy bool) *ResponseInitChain

func (*ResponseInitChain) Descriptor

func (*ResponseInitChain) Descriptor() ([]byte, []int)

func (*ResponseInitChain) Equal added in v0.22.5

func (this *ResponseInitChain) Equal(that interface{}) bool

func (*ResponseInitChain) GetConsensusParams

func (m *ResponseInitChain) GetConsensusParams() *ConsensusParams

func (*ResponseInitChain) GetValidators

func (m *ResponseInitChain) GetValidators() []Validator

func (*ResponseInitChain) Marshal added in v0.22.5

func (m *ResponseInitChain) Marshal() (dAtA []byte, err error)

func (*ResponseInitChain) MarshalTo added in v0.22.5

func (m *ResponseInitChain) MarshalTo(dAtA []byte) (int, error)

func (*ResponseInitChain) ProtoMessage

func (*ResponseInitChain) ProtoMessage()

func (*ResponseInitChain) Reset

func (m *ResponseInitChain) Reset()

func (*ResponseInitChain) Size added in v0.22.5

func (m *ResponseInitChain) Size() (n int)

func (*ResponseInitChain) String

func (m *ResponseInitChain) String() string

func (*ResponseInitChain) Unmarshal added in v0.22.5

func (m *ResponseInitChain) Unmarshal(dAtA []byte) error

type ResponseQuery

type ResponseQuery struct {
	Code uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	// bytes data = 2; // use "value" instead.
	Log    string `protobuf:"bytes,3,opt,name=log,proto3" json:"log,omitempty"`
	Info   string `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"`
	Index  int64  `protobuf:"varint,5,opt,name=index,proto3" json:"index,omitempty"`
	Key    []byte `protobuf:"bytes,6,opt,name=key,proto3" json:"key,omitempty"`
	Value  []byte `protobuf:"bytes,7,opt,name=value,proto3" json:"value,omitempty"`
	Proof  []byte `protobuf:"bytes,8,opt,name=proof,proto3" json:"proof,omitempty"`
	Height int64  `protobuf:"varint,9,opt,name=height,proto3" json:"height,omitempty"`
}

func NewPopulatedResponseQuery added in v0.22.5

func NewPopulatedResponseQuery(r randyTypes, easy bool) *ResponseQuery

func (*ResponseQuery) Descriptor

func (*ResponseQuery) Descriptor() ([]byte, []int)

func (*ResponseQuery) Equal added in v0.22.5

func (this *ResponseQuery) Equal(that interface{}) bool

func (*ResponseQuery) GetCode

func (m *ResponseQuery) GetCode() uint32

func (*ResponseQuery) GetHeight

func (m *ResponseQuery) GetHeight() int64

func (*ResponseQuery) GetIndex

func (m *ResponseQuery) GetIndex() int64

func (*ResponseQuery) GetInfo

func (m *ResponseQuery) GetInfo() string

func (*ResponseQuery) GetKey

func (m *ResponseQuery) GetKey() []byte

func (*ResponseQuery) GetLog

func (m *ResponseQuery) GetLog() string

func (*ResponseQuery) GetProof

func (m *ResponseQuery) GetProof() []byte

func (*ResponseQuery) GetValue

func (m *ResponseQuery) GetValue() []byte

func (ResponseQuery) IsErr

func (r ResponseQuery) IsErr() bool

IsErr returns true if Code is something other than OK.

func (ResponseQuery) IsOK

func (r ResponseQuery) IsOK() bool

IsOK returns true if Code is OK.

func (*ResponseQuery) Marshal added in v0.22.5

func (m *ResponseQuery) Marshal() (dAtA []byte, err error)

func (*ResponseQuery) MarshalJSON

func (r *ResponseQuery) MarshalJSON() ([]byte, error)

func (*ResponseQuery) MarshalTo added in v0.22.5

func (m *ResponseQuery) MarshalTo(dAtA []byte) (int, error)

func (*ResponseQuery) ProtoMessage

func (*ResponseQuery) ProtoMessage()

func (*ResponseQuery) Reset

func (m *ResponseQuery) Reset()

func (*ResponseQuery) Size added in v0.22.5

func (m *ResponseQuery) Size() (n int)

func (*ResponseQuery) String

func (m *ResponseQuery) String() string

func (*ResponseQuery) Unmarshal added in v0.22.5

func (m *ResponseQuery) Unmarshal(dAtA []byte) error

func (*ResponseQuery) UnmarshalJSON

func (r *ResponseQuery) UnmarshalJSON(b []byte) error

type ResponseSetOption

type ResponseSetOption struct {
	Code uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	// bytes data = 2;
	Log  string `protobuf:"bytes,3,opt,name=log,proto3" json:"log,omitempty"`
	Info string `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"`
}

nondeterministic

func NewPopulatedResponseSetOption added in v0.22.5

func NewPopulatedResponseSetOption(r randyTypes, easy bool) *ResponseSetOption

func (*ResponseSetOption) Descriptor

func (*ResponseSetOption) Descriptor() ([]byte, []int)

func (*ResponseSetOption) Equal added in v0.22.5

func (this *ResponseSetOption) Equal(that interface{}) bool

func (*ResponseSetOption) GetCode

func (m *ResponseSetOption) GetCode() uint32

func (*ResponseSetOption) GetInfo

func (m *ResponseSetOption) GetInfo() string

func (*ResponseSetOption) GetLog

func (m *ResponseSetOption) GetLog() string

func (*ResponseSetOption) Marshal added in v0.22.5

func (m *ResponseSetOption) Marshal() (dAtA []byte, err error)

func (*ResponseSetOption) MarshalJSON

func (r *ResponseSetOption) MarshalJSON() ([]byte, error)

func (*ResponseSetOption) MarshalTo added in v0.22.5

func (m *ResponseSetOption) MarshalTo(dAtA []byte) (int, error)

func (*ResponseSetOption) ProtoMessage

func (*ResponseSetOption) ProtoMessage()

func (*ResponseSetOption) Reset

func (m *ResponseSetOption) Reset()

func (*ResponseSetOption) Size added in v0.22.5

func (m *ResponseSetOption) Size() (n int)

func (*ResponseSetOption) String

func (m *ResponseSetOption) String() string

func (*ResponseSetOption) Unmarshal added in v0.22.5

func (m *ResponseSetOption) Unmarshal(dAtA []byte) error

func (*ResponseSetOption) UnmarshalJSON

func (r *ResponseSetOption) UnmarshalJSON(b []byte) error

type Response_BeginBlock

type Response_BeginBlock struct {
	BeginBlock *ResponseBeginBlock `protobuf:"bytes,8,opt,name=begin_block,json=beginBlock,oneof"`
}

func NewPopulatedResponse_BeginBlock added in v0.22.5

func NewPopulatedResponse_BeginBlock(r randyTypes, easy bool) *Response_BeginBlock

func (*Response_BeginBlock) Equal added in v0.22.5

func (this *Response_BeginBlock) Equal(that interface{}) bool

func (*Response_BeginBlock) MarshalTo added in v0.22.5

func (m *Response_BeginBlock) MarshalTo(dAtA []byte) (int, error)

func (*Response_BeginBlock) Size added in v0.22.5

func (m *Response_BeginBlock) Size() (n int)

type Response_CheckTx

type Response_CheckTx struct {
	CheckTx *ResponseCheckTx `protobuf:"bytes,9,opt,name=check_tx,json=checkTx,oneof"`
}

func NewPopulatedResponse_CheckTx added in v0.22.5

func NewPopulatedResponse_CheckTx(r randyTypes, easy bool) *Response_CheckTx

func (*Response_CheckTx) Equal added in v0.22.5

func (this *Response_CheckTx) Equal(that interface{}) bool

func (*Response_CheckTx) MarshalTo added in v0.22.5

func (m *Response_CheckTx) MarshalTo(dAtA []byte) (int, error)

func (*Response_CheckTx) Size added in v0.22.5

func (m *Response_CheckTx) Size() (n int)

type Response_Commit

type Response_Commit struct {
	Commit *ResponseCommit `protobuf:"bytes,12,opt,name=commit,oneof"`
}

func NewPopulatedResponse_Commit added in v0.22.5

func NewPopulatedResponse_Commit(r randyTypes, easy bool) *Response_Commit

func (*Response_Commit) Equal added in v0.22.5

func (this *Response_Commit) Equal(that interface{}) bool

func (*Response_Commit) MarshalTo added in v0.22.5

func (m *Response_Commit) MarshalTo(dAtA []byte) (int, error)

func (*Response_Commit) Size added in v0.22.5

func (m *Response_Commit) Size() (n int)

type Response_DeliverTx

type Response_DeliverTx struct {
	DeliverTx *ResponseDeliverTx `protobuf:"bytes,10,opt,name=deliver_tx,json=deliverTx,oneof"`
}

func NewPopulatedResponse_DeliverTx added in v0.22.5

func NewPopulatedResponse_DeliverTx(r randyTypes, easy bool) *Response_DeliverTx

func (*Response_DeliverTx) Equal added in v0.22.5

func (this *Response_DeliverTx) Equal(that interface{}) bool

func (*Response_DeliverTx) MarshalTo added in v0.22.5

func (m *Response_DeliverTx) MarshalTo(dAtA []byte) (int, error)

func (*Response_DeliverTx) Size added in v0.22.5

func (m *Response_DeliverTx) Size() (n int)

type Response_Echo

type Response_Echo struct {
	Echo *ResponseEcho `protobuf:"bytes,2,opt,name=echo,oneof"`
}

func NewPopulatedResponse_Echo added in v0.22.5

func NewPopulatedResponse_Echo(r randyTypes, easy bool) *Response_Echo

func (*Response_Echo) Equal added in v0.22.5

func (this *Response_Echo) Equal(that interface{}) bool

func (*Response_Echo) MarshalTo added in v0.22.5

func (m *Response_Echo) MarshalTo(dAtA []byte) (int, error)

func (*Response_Echo) Size added in v0.22.5

func (m *Response_Echo) Size() (n int)

type Response_EndBlock

type Response_EndBlock struct {
	EndBlock *ResponseEndBlock `protobuf:"bytes,11,opt,name=end_block,json=endBlock,oneof"`
}

func NewPopulatedResponse_EndBlock added in v0.22.5

func NewPopulatedResponse_EndBlock(r randyTypes, easy bool) *Response_EndBlock

func (*Response_EndBlock) Equal added in v0.22.5

func (this *Response_EndBlock) Equal(that interface{}) bool

func (*Response_EndBlock) MarshalTo added in v0.22.5

func (m *Response_EndBlock) MarshalTo(dAtA []byte) (int, error)

func (*Response_EndBlock) Size added in v0.22.5

func (m *Response_EndBlock) Size() (n int)

type Response_Exception

type Response_Exception struct {
	Exception *ResponseException `protobuf:"bytes,1,opt,name=exception,oneof"`
}

func NewPopulatedResponse_Exception added in v0.22.5

func NewPopulatedResponse_Exception(r randyTypes, easy bool) *Response_Exception

func (*Response_Exception) Equal added in v0.22.5

func (this *Response_Exception) Equal(that interface{}) bool

func (*Response_Exception) MarshalTo added in v0.22.5

func (m *Response_Exception) MarshalTo(dAtA []byte) (int, error)

func (*Response_Exception) Size added in v0.22.5

func (m *Response_Exception) Size() (n int)

type Response_Flush

type Response_Flush struct {
	Flush *ResponseFlush `protobuf:"bytes,3,opt,name=flush,oneof"`
}

func NewPopulatedResponse_Flush added in v0.22.5

func NewPopulatedResponse_Flush(r randyTypes, easy bool) *Response_Flush

func (*Response_Flush) Equal added in v0.22.5

func (this *Response_Flush) Equal(that interface{}) bool

func (*Response_Flush) MarshalTo added in v0.22.5

func (m *Response_Flush) MarshalTo(dAtA []byte) (int, error)

func (*Response_Flush) Size added in v0.22.5

func (m *Response_Flush) Size() (n int)

type Response_Info

type Response_Info struct {
	Info *ResponseInfo `protobuf:"bytes,4,opt,name=info,oneof"`
}

func NewPopulatedResponse_Info added in v0.22.5

func NewPopulatedResponse_Info(r randyTypes, easy bool) *Response_Info

func (*Response_Info) Equal added in v0.22.5

func (this *Response_Info) Equal(that interface{}) bool

func (*Response_Info) MarshalTo added in v0.22.5

func (m *Response_Info) MarshalTo(dAtA []byte) (int, error)

func (*Response_Info) Size added in v0.22.5

func (m *Response_Info) Size() (n int)

type Response_InitChain

type Response_InitChain struct {
	InitChain *ResponseInitChain `protobuf:"bytes,6,opt,name=init_chain,json=initChain,oneof"`
}

func NewPopulatedResponse_InitChain added in v0.22.5

func NewPopulatedResponse_InitChain(r randyTypes, easy bool) *Response_InitChain

func (*Response_InitChain) Equal added in v0.22.5

func (this *Response_InitChain) Equal(that interface{}) bool

func (*Response_InitChain) MarshalTo added in v0.22.5

func (m *Response_InitChain) MarshalTo(dAtA []byte) (int, error)

func (*Response_InitChain) Size added in v0.22.5

func (m *Response_InitChain) Size() (n int)

type Response_Query

type Response_Query struct {
	Query *ResponseQuery `protobuf:"bytes,7,opt,name=query,oneof"`
}

func NewPopulatedResponse_Query added in v0.22.5

func NewPopulatedResponse_Query(r randyTypes, easy bool) *Response_Query

func (*Response_Query) Equal added in v0.22.5

func (this *Response_Query) Equal(that interface{}) bool

func (*Response_Query) MarshalTo added in v0.22.5

func (m *Response_Query) MarshalTo(dAtA []byte) (int, error)

func (*Response_Query) Size added in v0.22.5

func (m *Response_Query) Size() (n int)

type Response_SetOption

type Response_SetOption struct {
	SetOption *ResponseSetOption `protobuf:"bytes,5,opt,name=set_option,json=setOption,oneof"`
}

func NewPopulatedResponse_SetOption added in v0.22.5

func NewPopulatedResponse_SetOption(r randyTypes, easy bool) *Response_SetOption

func (*Response_SetOption) Equal added in v0.22.5

func (this *Response_SetOption) Equal(that interface{}) bool

func (*Response_SetOption) MarshalTo added in v0.22.5

func (m *Response_SetOption) MarshalTo(dAtA []byte) (int, error)

func (*Response_SetOption) Size added in v0.22.5

func (m *Response_SetOption) Size() (n int)

type SigningValidator

type SigningValidator struct {
	Validator       Validator `protobuf:"bytes,1,opt,name=validator" json:"validator"`
	SignedLastBlock bool      `protobuf:"varint,2,opt,name=signed_last_block,json=signedLastBlock,proto3" json:"signed_last_block,omitempty"`
}

Validator with an extra bool

func NewPopulatedSigningValidator added in v0.22.5

func NewPopulatedSigningValidator(r randyTypes, easy bool) *SigningValidator

func (*SigningValidator) Descriptor

func (*SigningValidator) Descriptor() ([]byte, []int)

func (*SigningValidator) Equal added in v0.22.5

func (this *SigningValidator) Equal(that interface{}) bool

func (*SigningValidator) GetSignedLastBlock

func (m *SigningValidator) GetSignedLastBlock() bool

func (*SigningValidator) GetValidator

func (m *SigningValidator) GetValidator() Validator

func (*SigningValidator) Marshal added in v0.22.5

func (m *SigningValidator) Marshal() (dAtA []byte, err error)

func (*SigningValidator) MarshalTo added in v0.22.5

func (m *SigningValidator) MarshalTo(dAtA []byte) (int, error)

func (*SigningValidator) ProtoMessage

func (*SigningValidator) ProtoMessage()

func (*SigningValidator) Reset

func (m *SigningValidator) Reset()

func (*SigningValidator) Size added in v0.22.5

func (m *SigningValidator) Size() (n int)

func (*SigningValidator) String

func (m *SigningValidator) String() string

func (*SigningValidator) Unmarshal added in v0.22.5

func (m *SigningValidator) Unmarshal(dAtA []byte) error

type TxSize

type TxSize struct {
	MaxBytes int32 `protobuf:"varint,1,opt,name=max_bytes,json=maxBytes,proto3" json:"max_bytes,omitempty"`
	MaxGas   int64 `protobuf:"varint,2,opt,name=max_gas,json=maxGas,proto3" json:"max_gas,omitempty"`
}

TxSize contain limits on the tx size.

func NewPopulatedTxSize added in v0.22.5

func NewPopulatedTxSize(r randyTypes, easy bool) *TxSize

func (*TxSize) Descriptor

func (*TxSize) Descriptor() ([]byte, []int)

func (*TxSize) Equal added in v0.22.5

func (this *TxSize) Equal(that interface{}) bool

func (*TxSize) GetMaxBytes

func (m *TxSize) GetMaxBytes() int32

func (*TxSize) GetMaxGas

func (m *TxSize) GetMaxGas() int64

func (*TxSize) Marshal added in v0.22.5

func (m *TxSize) Marshal() (dAtA []byte, err error)

func (*TxSize) MarshalTo added in v0.22.5

func (m *TxSize) MarshalTo(dAtA []byte) (int, error)

func (*TxSize) ProtoMessage

func (*TxSize) ProtoMessage()

func (*TxSize) Reset

func (m *TxSize) Reset()

func (*TxSize) Size added in v0.22.5

func (m *TxSize) Size() (n int)

func (*TxSize) String

func (m *TxSize) String() string

func (*TxSize) Unmarshal added in v0.22.5

func (m *TxSize) Unmarshal(dAtA []byte) error

type Validator

type Validator struct {
	Address []byte `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	PubKey  PubKey `protobuf:"bytes,2,opt,name=pub_key,json=pubKey" json:"pub_key"`
	Power   int64  `protobuf:"varint,3,opt,name=power,proto3" json:"power,omitempty"`
}

Validator

func Ed25519Validator

func Ed25519Validator(pubkey []byte, power int64) Validator

func NewPopulatedValidator added in v0.22.5

func NewPopulatedValidator(r randyTypes, easy bool) *Validator

func (*Validator) Descriptor

func (*Validator) Descriptor() ([]byte, []int)

func (*Validator) Equal added in v0.22.5

func (this *Validator) Equal(that interface{}) bool

func (*Validator) GetAddress

func (m *Validator) GetAddress() []byte

func (*Validator) GetPower

func (m *Validator) GetPower() int64

func (*Validator) GetPubKey

func (m *Validator) GetPubKey() PubKey

func (*Validator) Marshal added in v0.22.5

func (m *Validator) Marshal() (dAtA []byte, err error)

func (*Validator) MarshalTo added in v0.22.5

func (m *Validator) MarshalTo(dAtA []byte) (int, error)

func (*Validator) ProtoMessage

func (*Validator) ProtoMessage()

func (*Validator) Reset

func (m *Validator) Reset()

func (*Validator) Size added in v0.22.5

func (m *Validator) Size() (n int)

func (*Validator) String

func (m *Validator) String() string

func (*Validator) Unmarshal added in v0.22.5

func (m *Validator) Unmarshal(dAtA []byte) error

type Validators

type Validators []Validator

Validators is a list of validators that implements the Sort interface

func (Validators) Len

func (v Validators) Len() int

func (Validators) Less

func (v Validators) Less(i, j int) bool

XXX: doesn't distinguish same validator with different power

func (Validators) Swap

func (v Validators) Swap(i, j int)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL