core

package
v0.0.0-...-2b16687 Latest Latest
Warning

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

Go to latest
Published: May 6, 2020 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Code_name = map[int32]string{
	0: "Success",
	1: "Fail",
}
View Source
var Code_value = map[string]int32{
	"Success": 0,
	"Fail":    1,
}

Functions

func RegisterChaincodeServer

func RegisterChaincodeServer(s *grpc.Server, srv ChaincodeServer)

func RegisterChannelServer

func RegisterChannelServer(s *grpc.Server, srv ChannelServer)

func RegisterPeerServer

func RegisterPeerServer(s *grpc.Server, srv PeerServer)

Types

type CCData

type CCData struct {
	Payload              string   `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
	TxId                 string   `protobuf:"bytes,2,opt,name=txId,proto3" json:"txId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CCData) Descriptor

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

func (*CCData) GetPayload

func (m *CCData) GetPayload() string

func (*CCData) GetTxId

func (m *CCData) GetTxId() string

func (*CCData) ProtoMessage

func (*CCData) ProtoMessage()

func (*CCData) Reset

func (m *CCData) Reset()

func (*CCData) String

func (m *CCData) String() string

func (*CCData) XXX_DiscardUnknown

func (m *CCData) XXX_DiscardUnknown()

func (*CCData) XXX_Marshal

func (m *CCData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CCData) XXX_Merge

func (m *CCData) XXX_Merge(src proto.Message)

func (*CCData) XXX_Size

func (m *CCData) XXX_Size() int

func (*CCData) XXX_Unmarshal

func (m *CCData) XXX_Unmarshal(b []byte) error

type ChainCodeInfo

type ChainCodeInfo struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Version              string   `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	Path                 string   `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
	Input                string   `protobuf:"bytes,4,opt,name=input,proto3" json:"input,omitempty"`
	Escc                 string   `protobuf:"bytes,5,opt,name=escc,proto3" json:"escc,omitempty"`
	Vscc                 string   `protobuf:"bytes,6,opt,name=vscc,proto3" json:"vscc,omitempty"`
	Id                   []byte   `protobuf:"bytes,7,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ChainCodeInfo) Descriptor

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

func (*ChainCodeInfo) GetEscc

func (m *ChainCodeInfo) GetEscc() string

func (*ChainCodeInfo) GetId

func (m *ChainCodeInfo) GetId() []byte

func (*ChainCodeInfo) GetInput

func (m *ChainCodeInfo) GetInput() string

func (*ChainCodeInfo) GetName

func (m *ChainCodeInfo) GetName() string

func (*ChainCodeInfo) GetPath

func (m *ChainCodeInfo) GetPath() string

func (*ChainCodeInfo) GetVersion

func (m *ChainCodeInfo) GetVersion() string

func (*ChainCodeInfo) GetVscc

func (m *ChainCodeInfo) GetVscc() string

func (*ChainCodeInfo) ProtoMessage

func (*ChainCodeInfo) ProtoMessage()

func (*ChainCodeInfo) Reset

func (m *ChainCodeInfo) Reset()

func (*ChainCodeInfo) String

func (m *ChainCodeInfo) String() string

func (*ChainCodeInfo) XXX_DiscardUnknown

func (m *ChainCodeInfo) XXX_DiscardUnknown()

func (*ChainCodeInfo) XXX_Marshal

func (m *ChainCodeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ChainCodeInfo) XXX_Merge

func (m *ChainCodeInfo) XXX_Merge(src proto.Message)

func (*ChainCodeInfo) XXX_Size

func (m *ChainCodeInfo) XXX_Size() int

func (*ChainCodeInfo) XXX_Unmarshal

func (m *ChainCodeInfo) XXX_Unmarshal(b []byte) error

type ChaincodeClient

ChaincodeClient is the client API for Chaincode service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewChaincodeClient

func NewChaincodeClient(cc *grpc.ClientConn) ChaincodeClient

type ChannelClient

ChannelClient is the client API for Channel service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewChannelClient

func NewChannelClient(cc *grpc.ClientConn) ChannelClient

type Code

type Code int32
const (
	Code_Success Code = 0
	Code_Fail    Code = 1
)

func (Code) EnumDescriptor

func (Code) EnumDescriptor() ([]byte, []int)

func (Code) String

func (x Code) String() string

type InstallData

type InstallData struct {
	Target               string   `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"`
	Info                 string   `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*InstallData) Descriptor

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

func (*InstallData) GetInfo

func (m *InstallData) GetInfo() string

func (*InstallData) GetTarget

func (m *InstallData) GetTarget() string

func (*InstallData) ProtoMessage

func (*InstallData) ProtoMessage()

func (*InstallData) Reset

func (m *InstallData) Reset()

func (*InstallData) String

func (m *InstallData) String() string

func (*InstallData) XXX_DiscardUnknown

func (m *InstallData) XXX_DiscardUnknown()

func (*InstallData) XXX_Marshal

func (m *InstallData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*InstallData) XXX_Merge

func (m *InstallData) XXX_Merge(src proto.Message)

func (*InstallData) XXX_Size

func (m *InstallData) XXX_Size() int

func (*InstallData) XXX_Unmarshal

func (m *InstallData) XXX_Unmarshal(b []byte) error

type PeerClient

type PeerClient interface {
	Installed(ctx context.Context, in *ReqPeerInstalled, opts ...grpc.CallOption) (*RespPeerInstalled, error)
	Instantiated(ctx context.Context, in *ReqPeerInstantiated, opts ...grpc.CallOption) (*RespPeerInstantiated, error)
}

PeerClient is the client API for Peer service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewPeerClient

func NewPeerClient(cc *grpc.ClientConn) PeerClient

type PeerServer

type PeerServer interface {
	Installed(context.Context, *ReqPeerInstalled) (*RespPeerInstalled, error)
	Instantiated(context.Context, *ReqPeerInstantiated) (*RespPeerInstantiated, error)
}

PeerServer is the server API for Peer service.

type ReqChainCodeInstall

type ReqChainCodeInstall struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 组织域名,如org.com
	OrgDomain string `protobuf:"bytes,2,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	// 组织名称,如org0
	OrgName string `protobuf:"bytes,3,opt,name=orgName,proto3" json:"orgName,omitempty"`
	// 组织用户名称,如Admin
	OrgUser  string `protobuf:"bytes,4,opt,name=orgUser,proto3" json:"orgUser,omitempty"`
	PeerName string `protobuf:"bytes,5,opt,name=peerName,proto3" json:"peerName,omitempty"`
	// 链码名称
	CcName string `protobuf:"bytes,6,opt,name=ccName,proto3" json:"ccName,omitempty"`
	// 链码go环境目录
	GoPath string `protobuf:"bytes,7,opt,name=goPath,proto3" json:"goPath,omitempty"`
	// 链码合约路径
	CcPath string `protobuf:"bytes,8,opt,name=ccPath,proto3" json:"ccPath,omitempty"`
	// 链码名称
	Version              string   `protobuf:"bytes,9,opt,name=version,proto3" json:"version,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChainCodeInstall) Descriptor

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

func (*ReqChainCodeInstall) GetCcName

func (m *ReqChainCodeInstall) GetCcName() string

func (*ReqChainCodeInstall) GetCcPath

func (m *ReqChainCodeInstall) GetCcPath() string

func (*ReqChainCodeInstall) GetGoPath

func (m *ReqChainCodeInstall) GetGoPath() string

func (*ReqChainCodeInstall) GetLeagueDomain

func (m *ReqChainCodeInstall) GetLeagueDomain() string

func (*ReqChainCodeInstall) GetOrgDomain

func (m *ReqChainCodeInstall) GetOrgDomain() string

func (*ReqChainCodeInstall) GetOrgName

func (m *ReqChainCodeInstall) GetOrgName() string

func (*ReqChainCodeInstall) GetOrgUser

func (m *ReqChainCodeInstall) GetOrgUser() string

func (*ReqChainCodeInstall) GetPeerName

func (m *ReqChainCodeInstall) GetPeerName() string

func (*ReqChainCodeInstall) GetVersion

func (m *ReqChainCodeInstall) GetVersion() string

func (*ReqChainCodeInstall) ProtoMessage

func (*ReqChainCodeInstall) ProtoMessage()

func (*ReqChainCodeInstall) Reset

func (m *ReqChainCodeInstall) Reset()

func (*ReqChainCodeInstall) String

func (m *ReqChainCodeInstall) String() string

func (*ReqChainCodeInstall) XXX_DiscardUnknown

func (m *ReqChainCodeInstall) XXX_DiscardUnknown()

func (*ReqChainCodeInstall) XXX_Marshal

func (m *ReqChainCodeInstall) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChainCodeInstall) XXX_Merge

func (m *ReqChainCodeInstall) XXX_Merge(src proto.Message)

func (*ReqChainCodeInstall) XXX_Size

func (m *ReqChainCodeInstall) XXX_Size() int

func (*ReqChainCodeInstall) XXX_Unmarshal

func (m *ReqChainCodeInstall) XXX_Unmarshal(b []byte) error

type ReqChainCodeInstantiate

type ReqChainCodeInstantiate struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 排序服务名称,如order0,可选
	OrdererName string `protobuf:"bytes,2,opt,name=ordererName,proto3" json:"ordererName,omitempty"`
	// 组织域名,如org.com
	OrgDomain string `protobuf:"bytes,3,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	// 组织名称,如org0
	OrgName string `protobuf:"bytes,4,opt,name=orgName,proto3" json:"orgName,omitempty"`
	// 组织用户名称,如Admin
	OrgUser string `protobuf:"bytes,5,opt,name=orgUser,proto3" json:"orgUser,omitempty"`
	// 节点名称,如peer0
	PeerName  string `protobuf:"bytes,6,opt,name=peerName,proto3" json:"peerName,omitempty"`
	ChannelID string `protobuf:"bytes,7,opt,name=channelID,proto3" json:"channelID,omitempty"`
	// 链码名称
	CcName string `protobuf:"bytes,8,opt,name=ccName,proto3" json:"ccName,omitempty"`
	// 链码合约路径
	CcPath string `protobuf:"bytes,9,opt,name=ccPath,proto3" json:"ccPath,omitempty"`
	// 链码名称
	Version              string   `protobuf:"bytes,10,opt,name=version,proto3" json:"version,omitempty"`
	OrgPolicies          []string `protobuf:"bytes,11,rep,name=orgPolicies,proto3" json:"orgPolicies,omitempty"`
	Args                 [][]byte `protobuf:"bytes,12,rep,name=args,proto3" json:"args,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChainCodeInstantiate) Descriptor

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

func (*ReqChainCodeInstantiate) GetArgs

func (m *ReqChainCodeInstantiate) GetArgs() [][]byte

func (*ReqChainCodeInstantiate) GetCcName

func (m *ReqChainCodeInstantiate) GetCcName() string

func (*ReqChainCodeInstantiate) GetCcPath

func (m *ReqChainCodeInstantiate) GetCcPath() string

func (*ReqChainCodeInstantiate) GetChannelID

func (m *ReqChainCodeInstantiate) GetChannelID() string

func (*ReqChainCodeInstantiate) GetLeagueDomain

func (m *ReqChainCodeInstantiate) GetLeagueDomain() string

func (*ReqChainCodeInstantiate) GetOrdererName

func (m *ReqChainCodeInstantiate) GetOrdererName() string

func (*ReqChainCodeInstantiate) GetOrgDomain

func (m *ReqChainCodeInstantiate) GetOrgDomain() string

func (*ReqChainCodeInstantiate) GetOrgName

func (m *ReqChainCodeInstantiate) GetOrgName() string

func (*ReqChainCodeInstantiate) GetOrgPolicies

func (m *ReqChainCodeInstantiate) GetOrgPolicies() []string

func (*ReqChainCodeInstantiate) GetOrgUser

func (m *ReqChainCodeInstantiate) GetOrgUser() string

func (*ReqChainCodeInstantiate) GetPeerName

func (m *ReqChainCodeInstantiate) GetPeerName() string

func (*ReqChainCodeInstantiate) GetVersion

func (m *ReqChainCodeInstantiate) GetVersion() string

func (*ReqChainCodeInstantiate) ProtoMessage

func (*ReqChainCodeInstantiate) ProtoMessage()

func (*ReqChainCodeInstantiate) Reset

func (m *ReqChainCodeInstantiate) Reset()

func (*ReqChainCodeInstantiate) String

func (m *ReqChainCodeInstantiate) String() string

func (*ReqChainCodeInstantiate) XXX_DiscardUnknown

func (m *ReqChainCodeInstantiate) XXX_DiscardUnknown()

func (*ReqChainCodeInstantiate) XXX_Marshal

func (m *ReqChainCodeInstantiate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChainCodeInstantiate) XXX_Merge

func (m *ReqChainCodeInstantiate) XXX_Merge(src proto.Message)

func (*ReqChainCodeInstantiate) XXX_Size

func (m *ReqChainCodeInstantiate) XXX_Size() int

func (*ReqChainCodeInstantiate) XXX_Unmarshal

func (m *ReqChainCodeInstantiate) XXX_Unmarshal(b []byte) error

type ReqChainCodeInvoke

type ReqChainCodeInvoke struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 组织域名,如org.com
	OrgDomain string `protobuf:"bytes,2,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	// 组织名称,如org0
	OrgName string `protobuf:"bytes,3,opt,name=orgName,proto3" json:"orgName,omitempty"`
	// 组织用户名称,如Admin
	OrgUser   string `protobuf:"bytes,4,opt,name=orgUser,proto3" json:"orgUser,omitempty"`
	PeerName  string `protobuf:"bytes,5,opt,name=peerName,proto3" json:"peerName,omitempty"`
	ChannelID string `protobuf:"bytes,6,opt,name=channelID,proto3" json:"channelID,omitempty"`
	// 链码名称
	CcName string `protobuf:"bytes,7,opt,name=ccName,proto3" json:"ccName,omitempty"`
	// 链码合约路径
	Fcn                  string   `protobuf:"bytes,8,opt,name=fcn,proto3" json:"fcn,omitempty"`
	Args                 [][]byte `protobuf:"bytes,11,rep,name=args,proto3" json:"args,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChainCodeInvoke) Descriptor

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

func (*ReqChainCodeInvoke) GetArgs

func (m *ReqChainCodeInvoke) GetArgs() [][]byte

func (*ReqChainCodeInvoke) GetCcName

func (m *ReqChainCodeInvoke) GetCcName() string

func (*ReqChainCodeInvoke) GetChannelID

func (m *ReqChainCodeInvoke) GetChannelID() string

func (*ReqChainCodeInvoke) GetFcn

func (m *ReqChainCodeInvoke) GetFcn() string

func (*ReqChainCodeInvoke) GetLeagueDomain

func (m *ReqChainCodeInvoke) GetLeagueDomain() string

func (*ReqChainCodeInvoke) GetOrgDomain

func (m *ReqChainCodeInvoke) GetOrgDomain() string

func (*ReqChainCodeInvoke) GetOrgName

func (m *ReqChainCodeInvoke) GetOrgName() string

func (*ReqChainCodeInvoke) GetOrgUser

func (m *ReqChainCodeInvoke) GetOrgUser() string

func (*ReqChainCodeInvoke) GetPeerName

func (m *ReqChainCodeInvoke) GetPeerName() string

func (*ReqChainCodeInvoke) ProtoMessage

func (*ReqChainCodeInvoke) ProtoMessage()

func (*ReqChainCodeInvoke) Reset

func (m *ReqChainCodeInvoke) Reset()

func (*ReqChainCodeInvoke) String

func (m *ReqChainCodeInvoke) String() string

func (*ReqChainCodeInvoke) XXX_DiscardUnknown

func (m *ReqChainCodeInvoke) XXX_DiscardUnknown()

func (*ReqChainCodeInvoke) XXX_Marshal

func (m *ReqChainCodeInvoke) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChainCodeInvoke) XXX_Merge

func (m *ReqChainCodeInvoke) XXX_Merge(src proto.Message)

func (*ReqChainCodeInvoke) XXX_Size

func (m *ReqChainCodeInvoke) XXX_Size() int

func (*ReqChainCodeInvoke) XXX_Unmarshal

func (m *ReqChainCodeInvoke) XXX_Unmarshal(b []byte) error

type ReqChainCodeQuery

type ReqChainCodeQuery struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 组织域名,如org.com
	OrgDomain string `protobuf:"bytes,2,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	// 组织名称,如org0
	OrgName string `protobuf:"bytes,3,opt,name=orgName,proto3" json:"orgName,omitempty"`
	// 组织用户名称,如Admin
	OrgUser   string `protobuf:"bytes,4,opt,name=orgUser,proto3" json:"orgUser,omitempty"`
	PeerName  string `protobuf:"bytes,5,opt,name=peerName,proto3" json:"peerName,omitempty"`
	ChannelID string `protobuf:"bytes,6,opt,name=channelID,proto3" json:"channelID,omitempty"`
	// 链码名称
	CcID string `protobuf:"bytes,7,opt,name=ccID,proto3" json:"ccID,omitempty"`
	// 链码执行方法名
	Fcn                  string   `protobuf:"bytes,8,opt,name=fcn,proto3" json:"fcn,omitempty"`
	Args                 [][]byte `protobuf:"bytes,11,rep,name=args,proto3" json:"args,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChainCodeQuery) Descriptor

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

func (*ReqChainCodeQuery) GetArgs

func (m *ReqChainCodeQuery) GetArgs() [][]byte

func (*ReqChainCodeQuery) GetCcID

func (m *ReqChainCodeQuery) GetCcID() string

func (*ReqChainCodeQuery) GetChannelID

func (m *ReqChainCodeQuery) GetChannelID() string

func (*ReqChainCodeQuery) GetFcn

func (m *ReqChainCodeQuery) GetFcn() string

func (*ReqChainCodeQuery) GetLeagueDomain

func (m *ReqChainCodeQuery) GetLeagueDomain() string

func (*ReqChainCodeQuery) GetOrgDomain

func (m *ReqChainCodeQuery) GetOrgDomain() string

func (*ReqChainCodeQuery) GetOrgName

func (m *ReqChainCodeQuery) GetOrgName() string

func (*ReqChainCodeQuery) GetOrgUser

func (m *ReqChainCodeQuery) GetOrgUser() string

func (*ReqChainCodeQuery) GetPeerName

func (m *ReqChainCodeQuery) GetPeerName() string

func (*ReqChainCodeQuery) ProtoMessage

func (*ReqChainCodeQuery) ProtoMessage()

func (*ReqChainCodeQuery) Reset

func (m *ReqChainCodeQuery) Reset()

func (*ReqChainCodeQuery) String

func (m *ReqChainCodeQuery) String() string

func (*ReqChainCodeQuery) XXX_DiscardUnknown

func (m *ReqChainCodeQuery) XXX_DiscardUnknown()

func (*ReqChainCodeQuery) XXX_Marshal

func (m *ReqChainCodeQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChainCodeQuery) XXX_Merge

func (m *ReqChainCodeQuery) XXX_Merge(src proto.Message)

func (*ReqChainCodeQuery) XXX_Size

func (m *ReqChainCodeQuery) XXX_Size() int

func (*ReqChainCodeQuery) XXX_Unmarshal

func (m *ReqChainCodeQuery) XXX_Unmarshal(b []byte) error

type ReqChainCodeUpgrade

type ReqChainCodeUpgrade struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 排序服务名称,如order0,可选
	OrdererName string `protobuf:"bytes,2,opt,name=ordererName,proto3" json:"ordererName,omitempty"`
	// 组织域名,如org.com
	OrgDomain string `protobuf:"bytes,3,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	// 组织名称,如org0
	OrgName string `protobuf:"bytes,4,opt,name=orgName,proto3" json:"orgName,omitempty"`
	// 组织用户名称,如Admin
	OrgUser   string `protobuf:"bytes,5,opt,name=orgUser,proto3" json:"orgUser,omitempty"`
	PeerName  string `protobuf:"bytes,6,opt,name=peerName,proto3" json:"peerName,omitempty"`
	ChannelID string `protobuf:"bytes,7,opt,name=channelID,proto3" json:"channelID,omitempty"`
	// 链码名称
	CcName string `protobuf:"bytes,8,opt,name=ccName,proto3" json:"ccName,omitempty"`
	// 链码合约路径
	CcPath string `protobuf:"bytes,9,opt,name=ccPath,proto3" json:"ccPath,omitempty"`
	// 链码名称
	Version              string   `protobuf:"bytes,10,opt,name=version,proto3" json:"version,omitempty"`
	OrgPolicies          []string `protobuf:"bytes,11,rep,name=orgPolicies,proto3" json:"orgPolicies,omitempty"`
	Args                 [][]byte `protobuf:"bytes,12,rep,name=args,proto3" json:"args,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChainCodeUpgrade) Descriptor

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

func (*ReqChainCodeUpgrade) GetArgs

func (m *ReqChainCodeUpgrade) GetArgs() [][]byte

func (*ReqChainCodeUpgrade) GetCcName

func (m *ReqChainCodeUpgrade) GetCcName() string

func (*ReqChainCodeUpgrade) GetCcPath

func (m *ReqChainCodeUpgrade) GetCcPath() string

func (*ReqChainCodeUpgrade) GetChannelID

func (m *ReqChainCodeUpgrade) GetChannelID() string

func (*ReqChainCodeUpgrade) GetLeagueDomain

func (m *ReqChainCodeUpgrade) GetLeagueDomain() string

func (*ReqChainCodeUpgrade) GetOrdererName

func (m *ReqChainCodeUpgrade) GetOrdererName() string

func (*ReqChainCodeUpgrade) GetOrgDomain

func (m *ReqChainCodeUpgrade) GetOrgDomain() string

func (*ReqChainCodeUpgrade) GetOrgName

func (m *ReqChainCodeUpgrade) GetOrgName() string

func (*ReqChainCodeUpgrade) GetOrgPolicies

func (m *ReqChainCodeUpgrade) GetOrgPolicies() []string

func (*ReqChainCodeUpgrade) GetOrgUser

func (m *ReqChainCodeUpgrade) GetOrgUser() string

func (*ReqChainCodeUpgrade) GetPeerName

func (m *ReqChainCodeUpgrade) GetPeerName() string

func (*ReqChainCodeUpgrade) GetVersion

func (m *ReqChainCodeUpgrade) GetVersion() string

func (*ReqChainCodeUpgrade) ProtoMessage

func (*ReqChainCodeUpgrade) ProtoMessage()

func (*ReqChainCodeUpgrade) Reset

func (m *ReqChainCodeUpgrade) Reset()

func (*ReqChainCodeUpgrade) String

func (m *ReqChainCodeUpgrade) String() string

func (*ReqChainCodeUpgrade) XXX_DiscardUnknown

func (m *ReqChainCodeUpgrade) XXX_DiscardUnknown()

func (*ReqChainCodeUpgrade) XXX_Marshal

func (m *ReqChainCodeUpgrade) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChainCodeUpgrade) XXX_Merge

func (m *ReqChainCodeUpgrade) XXX_Merge(src proto.Message)

func (*ReqChainCodeUpgrade) XXX_Size

func (m *ReqChainCodeUpgrade) XXX_Size() int

func (*ReqChainCodeUpgrade) XXX_Unmarshal

func (m *ReqChainCodeUpgrade) XXX_Unmarshal(b []byte) error

type ReqChannelConfigBlock

type ReqChannelConfigBlock struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 组织域名,如org.com
	OrgDomain string `protobuf:"bytes,2,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	// 节点名称,如peer0
	PeerName             string   `protobuf:"bytes,3,opt,name=peerName,proto3" json:"peerName,omitempty"`
	ChannelID            string   `protobuf:"bytes,4,opt,name=channelID,proto3" json:"channelID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChannelConfigBlock) Descriptor

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

func (*ReqChannelConfigBlock) GetChannelID

func (m *ReqChannelConfigBlock) GetChannelID() string

func (*ReqChannelConfigBlock) GetLeagueDomain

func (m *ReqChannelConfigBlock) GetLeagueDomain() string

func (*ReqChannelConfigBlock) GetOrgDomain

func (m *ReqChannelConfigBlock) GetOrgDomain() string

func (*ReqChannelConfigBlock) GetPeerName

func (m *ReqChannelConfigBlock) GetPeerName() string

func (*ReqChannelConfigBlock) ProtoMessage

func (*ReqChannelConfigBlock) ProtoMessage()

func (*ReqChannelConfigBlock) Reset

func (m *ReqChannelConfigBlock) Reset()

func (*ReqChannelConfigBlock) String

func (m *ReqChannelConfigBlock) String() string

func (*ReqChannelConfigBlock) XXX_DiscardUnknown

func (m *ReqChannelConfigBlock) XXX_DiscardUnknown()

func (*ReqChannelConfigBlock) XXX_Marshal

func (m *ReqChannelConfigBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChannelConfigBlock) XXX_Merge

func (m *ReqChannelConfigBlock) XXX_Merge(src proto.Message)

func (*ReqChannelConfigBlock) XXX_Size

func (m *ReqChannelConfigBlock) XXX_Size() int

func (*ReqChannelConfigBlock) XXX_Unmarshal

func (m *ReqChannelConfigBlock) XXX_Unmarshal(b []byte) error

type ReqChannelCreate

type ReqChannelCreate struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 组织域名,如org.com
	OrgDomain            string   `protobuf:"bytes,2,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	ChannelID            string   `protobuf:"bytes,3,opt,name=channelID,proto3" json:"channelID,omitempty"`
	ChannelTxBytes       []byte   `protobuf:"bytes,4,opt,name=channelTxBytes,proto3" json:"channelTxBytes,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChannelCreate) Descriptor

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

func (*ReqChannelCreate) GetChannelID

func (m *ReqChannelCreate) GetChannelID() string

func (*ReqChannelCreate) GetChannelTxBytes

func (m *ReqChannelCreate) GetChannelTxBytes() []byte

func (*ReqChannelCreate) GetLeagueDomain

func (m *ReqChannelCreate) GetLeagueDomain() string

func (*ReqChannelCreate) GetOrgDomain

func (m *ReqChannelCreate) GetOrgDomain() string

func (*ReqChannelCreate) ProtoMessage

func (*ReqChannelCreate) ProtoMessage()

func (*ReqChannelCreate) Reset

func (m *ReqChannelCreate) Reset()

func (*ReqChannelCreate) String

func (m *ReqChannelCreate) String() string

func (*ReqChannelCreate) XXX_DiscardUnknown

func (m *ReqChannelCreate) XXX_DiscardUnknown()

func (*ReqChannelCreate) XXX_Marshal

func (m *ReqChannelCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChannelCreate) XXX_Merge

func (m *ReqChannelCreate) XXX_Merge(src proto.Message)

func (*ReqChannelCreate) XXX_Size

func (m *ReqChannelCreate) XXX_Size() int

func (*ReqChannelCreate) XXX_Unmarshal

func (m *ReqChannelCreate) XXX_Unmarshal(b []byte) error

type ReqChannelJoin

type ReqChannelJoin struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 组织域名,如org.com
	OrgDomain            string   `protobuf:"bytes,2,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	PeerName             string   `protobuf:"bytes,3,opt,name=peerName,proto3" json:"peerName,omitempty"`
	ChannelID            string   `protobuf:"bytes,4,opt,name=channelID,proto3" json:"channelID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChannelJoin) Descriptor

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

func (*ReqChannelJoin) GetChannelID

func (m *ReqChannelJoin) GetChannelID() string

func (*ReqChannelJoin) GetLeagueDomain

func (m *ReqChannelJoin) GetLeagueDomain() string

func (*ReqChannelJoin) GetOrgDomain

func (m *ReqChannelJoin) GetOrgDomain() string

func (*ReqChannelJoin) GetPeerName

func (m *ReqChannelJoin) GetPeerName() string

func (*ReqChannelJoin) ProtoMessage

func (*ReqChannelJoin) ProtoMessage()

func (*ReqChannelJoin) Reset

func (m *ReqChannelJoin) Reset()

func (*ReqChannelJoin) String

func (m *ReqChannelJoin) String() string

func (*ReqChannelJoin) XXX_DiscardUnknown

func (m *ReqChannelJoin) XXX_DiscardUnknown()

func (*ReqChannelJoin) XXX_Marshal

func (m *ReqChannelJoin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChannelJoin) XXX_Merge

func (m *ReqChannelJoin) XXX_Merge(src proto.Message)

func (*ReqChannelJoin) XXX_Size

func (m *ReqChannelJoin) XXX_Size() int

func (*ReqChannelJoin) XXX_Unmarshal

func (m *ReqChannelJoin) XXX_Unmarshal(b []byte) error

type ReqChannelList

type ReqChannelList struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 组织域名,如org.com
	OrgDomain            string   `protobuf:"bytes,2,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	PeerName             string   `protobuf:"bytes,3,opt,name=peerName,proto3" json:"peerName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChannelList) Descriptor

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

func (*ReqChannelList) GetLeagueDomain

func (m *ReqChannelList) GetLeagueDomain() string

func (*ReqChannelList) GetOrgDomain

func (m *ReqChannelList) GetOrgDomain() string

func (*ReqChannelList) GetPeerName

func (m *ReqChannelList) GetPeerName() string

func (*ReqChannelList) ProtoMessage

func (*ReqChannelList) ProtoMessage()

func (*ReqChannelList) Reset

func (m *ReqChannelList) Reset()

func (*ReqChannelList) String

func (m *ReqChannelList) String() string

func (*ReqChannelList) XXX_DiscardUnknown

func (m *ReqChannelList) XXX_DiscardUnknown()

func (*ReqChannelList) XXX_Marshal

func (m *ReqChannelList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChannelList) XXX_Merge

func (m *ReqChannelList) XXX_Merge(src proto.Message)

func (*ReqChannelList) XXX_Size

func (m *ReqChannelList) XXX_Size() int

func (*ReqChannelList) XXX_Unmarshal

func (m *ReqChannelList) XXX_Unmarshal(b []byte) error

type ReqChannelSign

type ReqChannelSign struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 组织域名,如org.com
	OrgDomain string `protobuf:"bytes,2,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	// 组织名称,如org0
	OrgName string `protobuf:"bytes,3,opt,name=orgName,proto3" json:"orgName,omitempty"`
	// 组织用户名称,如Admin
	OrgUser string `protobuf:"bytes,4,opt,name=orgUser,proto3" json:"orgUser,omitempty"`
	// 计划更新的通道名称
	ChannelID string `protobuf:"bytes,5,opt,name=channelID,proto3" json:"channelID,omitempty"`
	// 通道配置区块更新信息
	EnvelopeBytes        []byte   `protobuf:"bytes,6,opt,name=envelopeBytes,proto3" json:"envelopeBytes,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChannelSign) Descriptor

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

func (*ReqChannelSign) GetChannelID

func (m *ReqChannelSign) GetChannelID() string

func (*ReqChannelSign) GetEnvelopeBytes

func (m *ReqChannelSign) GetEnvelopeBytes() []byte

func (*ReqChannelSign) GetLeagueDomain

func (m *ReqChannelSign) GetLeagueDomain() string

func (*ReqChannelSign) GetOrgDomain

func (m *ReqChannelSign) GetOrgDomain() string

func (*ReqChannelSign) GetOrgName

func (m *ReqChannelSign) GetOrgName() string

func (*ReqChannelSign) GetOrgUser

func (m *ReqChannelSign) GetOrgUser() string

func (*ReqChannelSign) ProtoMessage

func (*ReqChannelSign) ProtoMessage()

func (*ReqChannelSign) Reset

func (m *ReqChannelSign) Reset()

func (*ReqChannelSign) String

func (m *ReqChannelSign) String() string

func (*ReqChannelSign) XXX_DiscardUnknown

func (m *ReqChannelSign) XXX_DiscardUnknown()

func (*ReqChannelSign) XXX_Marshal

func (m *ReqChannelSign) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChannelSign) XXX_Merge

func (m *ReqChannelSign) XXX_Merge(src proto.Message)

func (*ReqChannelSign) XXX_Size

func (m *ReqChannelSign) XXX_Size() int

func (*ReqChannelSign) XXX_Unmarshal

func (m *ReqChannelSign) XXX_Unmarshal(b []byte) error

type ReqChannelUpdateBlock

type ReqChannelUpdateBlock struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 组织域名,如org.com
	OrgDomain string `protobuf:"bytes,2,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	// 节点名称,如peer0
	PeerName  string `protobuf:"bytes,3,opt,name=peerName,proto3" json:"peerName,omitempty"`
	ChannelID string `protobuf:"bytes,4,opt,name=channelID,proto3" json:"channelID,omitempty"`
	// 联盟下协会
	Consortium string `protobuf:"bytes,5,opt,name=consortium,proto3" json:"consortium,omitempty"`
	// 新增组织名称,如org3
	NewOrgName string `protobuf:"bytes,6,opt,name=newOrgName,proto3" json:"newOrgName,omitempty"`
	// 通道配置区块信息,解析使用InspectBlock即可
	GenesisBlockBytes    []byte   `protobuf:"bytes,7,opt,name=genesisBlockBytes,proto3" json:"genesisBlockBytes,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChannelUpdateBlock) Descriptor

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

func (*ReqChannelUpdateBlock) GetChannelID

func (m *ReqChannelUpdateBlock) GetChannelID() string

func (*ReqChannelUpdateBlock) GetConsortium

func (m *ReqChannelUpdateBlock) GetConsortium() string

func (*ReqChannelUpdateBlock) GetGenesisBlockBytes

func (m *ReqChannelUpdateBlock) GetGenesisBlockBytes() []byte

func (*ReqChannelUpdateBlock) GetLeagueDomain

func (m *ReqChannelUpdateBlock) GetLeagueDomain() string

func (*ReqChannelUpdateBlock) GetNewOrgName

func (m *ReqChannelUpdateBlock) GetNewOrgName() string

func (*ReqChannelUpdateBlock) GetOrgDomain

func (m *ReqChannelUpdateBlock) GetOrgDomain() string

func (*ReqChannelUpdateBlock) GetPeerName

func (m *ReqChannelUpdateBlock) GetPeerName() string

func (*ReqChannelUpdateBlock) ProtoMessage

func (*ReqChannelUpdateBlock) ProtoMessage()

func (*ReqChannelUpdateBlock) Reset

func (m *ReqChannelUpdateBlock) Reset()

func (*ReqChannelUpdateBlock) String

func (m *ReqChannelUpdateBlock) String() string

func (*ReqChannelUpdateBlock) XXX_DiscardUnknown

func (m *ReqChannelUpdateBlock) XXX_DiscardUnknown()

func (*ReqChannelUpdateBlock) XXX_Marshal

func (m *ReqChannelUpdateBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChannelUpdateBlock) XXX_Merge

func (m *ReqChannelUpdateBlock) XXX_Merge(src proto.Message)

func (*ReqChannelUpdateBlock) XXX_Size

func (m *ReqChannelUpdateBlock) XXX_Size() int

func (*ReqChannelUpdateBlock) XXX_Unmarshal

func (m *ReqChannelUpdateBlock) XXX_Unmarshal(b []byte) error

type ReqPeerCollectionsConfig

type ReqPeerCollectionsConfig struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 组织域名,如org.com
	OrgDomain string `protobuf:"bytes,2,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	// 组织名称,如org0
	OrgName string `protobuf:"bytes,3,opt,name=orgName,proto3" json:"orgName,omitempty"`
	// 组织用户名称,如Admin
	OrgUser   string `protobuf:"bytes,4,opt,name=orgUser,proto3" json:"orgUser,omitempty"`
	PeerName  string `protobuf:"bytes,5,opt,name=peerName,proto3" json:"peerName,omitempty"`
	ChannelID string `protobuf:"bytes,6,opt,name=channelID,proto3" json:"channelID,omitempty"`
	// 链码名称
	CcID                 string   `protobuf:"bytes,7,opt,name=ccID,proto3" json:"ccID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqPeerCollectionsConfig) Descriptor

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

func (*ReqPeerCollectionsConfig) GetCcID

func (m *ReqPeerCollectionsConfig) GetCcID() string

func (*ReqPeerCollectionsConfig) GetChannelID

func (m *ReqPeerCollectionsConfig) GetChannelID() string

func (*ReqPeerCollectionsConfig) GetLeagueDomain

func (m *ReqPeerCollectionsConfig) GetLeagueDomain() string

func (*ReqPeerCollectionsConfig) GetOrgDomain

func (m *ReqPeerCollectionsConfig) GetOrgDomain() string

func (*ReqPeerCollectionsConfig) GetOrgName

func (m *ReqPeerCollectionsConfig) GetOrgName() string

func (*ReqPeerCollectionsConfig) GetOrgUser

func (m *ReqPeerCollectionsConfig) GetOrgUser() string

func (*ReqPeerCollectionsConfig) GetPeerName

func (m *ReqPeerCollectionsConfig) GetPeerName() string

func (*ReqPeerCollectionsConfig) ProtoMessage

func (*ReqPeerCollectionsConfig) ProtoMessage()

func (*ReqPeerCollectionsConfig) Reset

func (m *ReqPeerCollectionsConfig) Reset()

func (*ReqPeerCollectionsConfig) String

func (m *ReqPeerCollectionsConfig) String() string

func (*ReqPeerCollectionsConfig) XXX_DiscardUnknown

func (m *ReqPeerCollectionsConfig) XXX_DiscardUnknown()

func (*ReqPeerCollectionsConfig) XXX_Marshal

func (m *ReqPeerCollectionsConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqPeerCollectionsConfig) XXX_Merge

func (m *ReqPeerCollectionsConfig) XXX_Merge(src proto.Message)

func (*ReqPeerCollectionsConfig) XXX_Size

func (m *ReqPeerCollectionsConfig) XXX_Size() int

func (*ReqPeerCollectionsConfig) XXX_Unmarshal

func (m *ReqPeerCollectionsConfig) XXX_Unmarshal(b []byte) error

type ReqPeerInstalled

type ReqPeerInstalled struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 组织域名,如org.com
	OrgDomain string `protobuf:"bytes,2,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	// 组织名称,如org0
	OrgName string `protobuf:"bytes,3,opt,name=orgName,proto3" json:"orgName,omitempty"`
	// 组织用户名称,如Admin
	OrgUser              string   `protobuf:"bytes,4,opt,name=orgUser,proto3" json:"orgUser,omitempty"`
	PeerName             string   `protobuf:"bytes,5,opt,name=peerName,proto3" json:"peerName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqPeerInstalled) Descriptor

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

func (*ReqPeerInstalled) GetLeagueDomain

func (m *ReqPeerInstalled) GetLeagueDomain() string

func (*ReqPeerInstalled) GetOrgDomain

func (m *ReqPeerInstalled) GetOrgDomain() string

func (*ReqPeerInstalled) GetOrgName

func (m *ReqPeerInstalled) GetOrgName() string

func (*ReqPeerInstalled) GetOrgUser

func (m *ReqPeerInstalled) GetOrgUser() string

func (*ReqPeerInstalled) GetPeerName

func (m *ReqPeerInstalled) GetPeerName() string

func (*ReqPeerInstalled) ProtoMessage

func (*ReqPeerInstalled) ProtoMessage()

func (*ReqPeerInstalled) Reset

func (m *ReqPeerInstalled) Reset()

func (*ReqPeerInstalled) String

func (m *ReqPeerInstalled) String() string

func (*ReqPeerInstalled) XXX_DiscardUnknown

func (m *ReqPeerInstalled) XXX_DiscardUnknown()

func (*ReqPeerInstalled) XXX_Marshal

func (m *ReqPeerInstalled) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqPeerInstalled) XXX_Merge

func (m *ReqPeerInstalled) XXX_Merge(src proto.Message)

func (*ReqPeerInstalled) XXX_Size

func (m *ReqPeerInstalled) XXX_Size() int

func (*ReqPeerInstalled) XXX_Unmarshal

func (m *ReqPeerInstalled) XXX_Unmarshal(b []byte) error

type ReqPeerInstantiated

type ReqPeerInstantiated struct {
	// 联盟根域名,如:example.com
	LeagueDomain string `protobuf:"bytes,1,opt,name=leagueDomain,proto3" json:"leagueDomain,omitempty"`
	// 组织域名,如org.com
	OrgDomain string `protobuf:"bytes,2,opt,name=orgDomain,proto3" json:"orgDomain,omitempty"`
	// 组织名称,如org0
	OrgName string `protobuf:"bytes,3,opt,name=orgName,proto3" json:"orgName,omitempty"`
	// 组织用户名称,如Admin
	OrgUser              string   `protobuf:"bytes,4,opt,name=orgUser,proto3" json:"orgUser,omitempty"`
	PeerName             string   `protobuf:"bytes,5,opt,name=peerName,proto3" json:"peerName,omitempty"`
	ChannelID            string   `protobuf:"bytes,6,opt,name=channelID,proto3" json:"channelID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqPeerInstantiated) Descriptor

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

func (*ReqPeerInstantiated) GetChannelID

func (m *ReqPeerInstantiated) GetChannelID() string

func (*ReqPeerInstantiated) GetLeagueDomain

func (m *ReqPeerInstantiated) GetLeagueDomain() string

func (*ReqPeerInstantiated) GetOrgDomain

func (m *ReqPeerInstantiated) GetOrgDomain() string

func (*ReqPeerInstantiated) GetOrgName

func (m *ReqPeerInstantiated) GetOrgName() string

func (*ReqPeerInstantiated) GetOrgUser

func (m *ReqPeerInstantiated) GetOrgUser() string

func (*ReqPeerInstantiated) GetPeerName

func (m *ReqPeerInstantiated) GetPeerName() string

func (*ReqPeerInstantiated) ProtoMessage

func (*ReqPeerInstantiated) ProtoMessage()

func (*ReqPeerInstantiated) Reset

func (m *ReqPeerInstantiated) Reset()

func (*ReqPeerInstantiated) String

func (m *ReqPeerInstantiated) String() string

func (*ReqPeerInstantiated) XXX_DiscardUnknown

func (m *ReqPeerInstantiated) XXX_DiscardUnknown()

func (*ReqPeerInstantiated) XXX_Marshal

func (m *ReqPeerInstantiated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqPeerInstantiated) XXX_Merge

func (m *ReqPeerInstantiated) XXX_Merge(src proto.Message)

func (*ReqPeerInstantiated) XXX_Size

func (m *ReqPeerInstantiated) XXX_Size() int

func (*ReqPeerInstantiated) XXX_Unmarshal

func (m *ReqPeerInstantiated) XXX_Unmarshal(b []byte) error

type RespChainCodeInstall

type RespChainCodeInstall struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg               string       `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	Data                 *InstallData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*RespChainCodeInstall) Descriptor

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

func (*RespChainCodeInstall) GetCode

func (m *RespChainCodeInstall) GetCode() Code

func (*RespChainCodeInstall) GetData

func (m *RespChainCodeInstall) GetData() *InstallData

func (*RespChainCodeInstall) GetErrMsg

func (m *RespChainCodeInstall) GetErrMsg() string

func (*RespChainCodeInstall) ProtoMessage

func (*RespChainCodeInstall) ProtoMessage()

func (*RespChainCodeInstall) Reset

func (m *RespChainCodeInstall) Reset()

func (*RespChainCodeInstall) String

func (m *RespChainCodeInstall) String() string

func (*RespChainCodeInstall) XXX_DiscardUnknown

func (m *RespChainCodeInstall) XXX_DiscardUnknown()

func (*RespChainCodeInstall) XXX_Marshal

func (m *RespChainCodeInstall) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespChainCodeInstall) XXX_Merge

func (m *RespChainCodeInstall) XXX_Merge(src proto.Message)

func (*RespChainCodeInstall) XXX_Size

func (m *RespChainCodeInstall) XXX_Size() int

func (*RespChainCodeInstall) XXX_Unmarshal

func (m *RespChainCodeInstall) XXX_Unmarshal(b []byte) error

type RespChainCodeInstantiate

type RespChainCodeInstantiate struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg               string   `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	TxId                 string   `protobuf:"bytes,3,opt,name=txId,proto3" json:"txId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RespChainCodeInstantiate) Descriptor

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

func (*RespChainCodeInstantiate) GetCode

func (m *RespChainCodeInstantiate) GetCode() Code

func (*RespChainCodeInstantiate) GetErrMsg

func (m *RespChainCodeInstantiate) GetErrMsg() string

func (*RespChainCodeInstantiate) GetTxId

func (m *RespChainCodeInstantiate) GetTxId() string

func (*RespChainCodeInstantiate) ProtoMessage

func (*RespChainCodeInstantiate) ProtoMessage()

func (*RespChainCodeInstantiate) Reset

func (m *RespChainCodeInstantiate) Reset()

func (*RespChainCodeInstantiate) String

func (m *RespChainCodeInstantiate) String() string

func (*RespChainCodeInstantiate) XXX_DiscardUnknown

func (m *RespChainCodeInstantiate) XXX_DiscardUnknown()

func (*RespChainCodeInstantiate) XXX_Marshal

func (m *RespChainCodeInstantiate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespChainCodeInstantiate) XXX_Merge

func (m *RespChainCodeInstantiate) XXX_Merge(src proto.Message)

func (*RespChainCodeInstantiate) XXX_Size

func (m *RespChainCodeInstantiate) XXX_Size() int

func (*RespChainCodeInstantiate) XXX_Unmarshal

func (m *RespChainCodeInstantiate) XXX_Unmarshal(b []byte) error

type RespChainCodeInvoke

type RespChainCodeInvoke struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg               string   `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	Data                 *CCData  `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RespChainCodeInvoke) Descriptor

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

func (*RespChainCodeInvoke) GetCode

func (m *RespChainCodeInvoke) GetCode() Code

func (*RespChainCodeInvoke) GetData

func (m *RespChainCodeInvoke) GetData() *CCData

func (*RespChainCodeInvoke) GetErrMsg

func (m *RespChainCodeInvoke) GetErrMsg() string

func (*RespChainCodeInvoke) ProtoMessage

func (*RespChainCodeInvoke) ProtoMessage()

func (*RespChainCodeInvoke) Reset

func (m *RespChainCodeInvoke) Reset()

func (*RespChainCodeInvoke) String

func (m *RespChainCodeInvoke) String() string

func (*RespChainCodeInvoke) XXX_DiscardUnknown

func (m *RespChainCodeInvoke) XXX_DiscardUnknown()

func (*RespChainCodeInvoke) XXX_Marshal

func (m *RespChainCodeInvoke) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespChainCodeInvoke) XXX_Merge

func (m *RespChainCodeInvoke) XXX_Merge(src proto.Message)

func (*RespChainCodeInvoke) XXX_Size

func (m *RespChainCodeInvoke) XXX_Size() int

func (*RespChainCodeInvoke) XXX_Unmarshal

func (m *RespChainCodeInvoke) XXX_Unmarshal(b []byte) error

type RespChainCodeQuery

type RespChainCodeQuery struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg               string   `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	Data                 *CCData  `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RespChainCodeQuery) Descriptor

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

func (*RespChainCodeQuery) GetCode

func (m *RespChainCodeQuery) GetCode() Code

func (*RespChainCodeQuery) GetData

func (m *RespChainCodeQuery) GetData() *CCData

func (*RespChainCodeQuery) GetErrMsg

func (m *RespChainCodeQuery) GetErrMsg() string

func (*RespChainCodeQuery) ProtoMessage

func (*RespChainCodeQuery) ProtoMessage()

func (*RespChainCodeQuery) Reset

func (m *RespChainCodeQuery) Reset()

func (*RespChainCodeQuery) String

func (m *RespChainCodeQuery) String() string

func (*RespChainCodeQuery) XXX_DiscardUnknown

func (m *RespChainCodeQuery) XXX_DiscardUnknown()

func (*RespChainCodeQuery) XXX_Marshal

func (m *RespChainCodeQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespChainCodeQuery) XXX_Merge

func (m *RespChainCodeQuery) XXX_Merge(src proto.Message)

func (*RespChainCodeQuery) XXX_Size

func (m *RespChainCodeQuery) XXX_Size() int

func (*RespChainCodeQuery) XXX_Unmarshal

func (m *RespChainCodeQuery) XXX_Unmarshal(b []byte) error

type RespChainCodeUpgrade

type RespChainCodeUpgrade struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg               string   `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	TxId                 string   `protobuf:"bytes,3,opt,name=txId,proto3" json:"txId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RespChainCodeUpgrade) Descriptor

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

func (*RespChainCodeUpgrade) GetCode

func (m *RespChainCodeUpgrade) GetCode() Code

func (*RespChainCodeUpgrade) GetErrMsg

func (m *RespChainCodeUpgrade) GetErrMsg() string

func (*RespChainCodeUpgrade) GetTxId

func (m *RespChainCodeUpgrade) GetTxId() string

func (*RespChainCodeUpgrade) ProtoMessage

func (*RespChainCodeUpgrade) ProtoMessage()

func (*RespChainCodeUpgrade) Reset

func (m *RespChainCodeUpgrade) Reset()

func (*RespChainCodeUpgrade) String

func (m *RespChainCodeUpgrade) String() string

func (*RespChainCodeUpgrade) XXX_DiscardUnknown

func (m *RespChainCodeUpgrade) XXX_DiscardUnknown()

func (*RespChainCodeUpgrade) XXX_Marshal

func (m *RespChainCodeUpgrade) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespChainCodeUpgrade) XXX_Merge

func (m *RespChainCodeUpgrade) XXX_Merge(src proto.Message)

func (*RespChainCodeUpgrade) XXX_Size

func (m *RespChainCodeUpgrade) XXX_Size() int

func (*RespChainCodeUpgrade) XXX_Unmarshal

func (m *RespChainCodeUpgrade) XXX_Unmarshal(b []byte) error

type RespChannelConfigBlock

type RespChannelConfigBlock struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg string `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	// 通道配置区块信息,解析使用InspectBlock即可
	GenesisBlockBytes    []byte   `protobuf:"bytes,3,opt,name=genesisBlockBytes,proto3" json:"genesisBlockBytes,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RespChannelConfigBlock) Descriptor

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

func (*RespChannelConfigBlock) GetCode

func (m *RespChannelConfigBlock) GetCode() Code

func (*RespChannelConfigBlock) GetErrMsg

func (m *RespChannelConfigBlock) GetErrMsg() string

func (*RespChannelConfigBlock) GetGenesisBlockBytes

func (m *RespChannelConfigBlock) GetGenesisBlockBytes() []byte

func (*RespChannelConfigBlock) ProtoMessage

func (*RespChannelConfigBlock) ProtoMessage()

func (*RespChannelConfigBlock) Reset

func (m *RespChannelConfigBlock) Reset()

func (*RespChannelConfigBlock) String

func (m *RespChannelConfigBlock) String() string

func (*RespChannelConfigBlock) XXX_DiscardUnknown

func (m *RespChannelConfigBlock) XXX_DiscardUnknown()

func (*RespChannelConfigBlock) XXX_Marshal

func (m *RespChannelConfigBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespChannelConfigBlock) XXX_Merge

func (m *RespChannelConfigBlock) XXX_Merge(src proto.Message)

func (*RespChannelConfigBlock) XXX_Size

func (m *RespChannelConfigBlock) XXX_Size() int

func (*RespChannelConfigBlock) XXX_Unmarshal

func (m *RespChannelConfigBlock) XXX_Unmarshal(b []byte) error

type RespChannelCreate

type RespChannelCreate struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg               string   `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	TxId                 string   `protobuf:"bytes,3,opt,name=txId,proto3" json:"txId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RespChannelCreate) Descriptor

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

func (*RespChannelCreate) GetCode

func (m *RespChannelCreate) GetCode() Code

func (*RespChannelCreate) GetErrMsg

func (m *RespChannelCreate) GetErrMsg() string

func (*RespChannelCreate) GetTxId

func (m *RespChannelCreate) GetTxId() string

func (*RespChannelCreate) ProtoMessage

func (*RespChannelCreate) ProtoMessage()

func (*RespChannelCreate) Reset

func (m *RespChannelCreate) Reset()

func (*RespChannelCreate) String

func (m *RespChannelCreate) String() string

func (*RespChannelCreate) XXX_DiscardUnknown

func (m *RespChannelCreate) XXX_DiscardUnknown()

func (*RespChannelCreate) XXX_Marshal

func (m *RespChannelCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespChannelCreate) XXX_Merge

func (m *RespChannelCreate) XXX_Merge(src proto.Message)

func (*RespChannelCreate) XXX_Size

func (m *RespChannelCreate) XXX_Size() int

func (*RespChannelCreate) XXX_Unmarshal

func (m *RespChannelCreate) XXX_Unmarshal(b []byte) error

type RespChannelJoin

type RespChannelJoin struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg               string   `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RespChannelJoin) Descriptor

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

func (*RespChannelJoin) GetCode

func (m *RespChannelJoin) GetCode() Code

func (*RespChannelJoin) GetErrMsg

func (m *RespChannelJoin) GetErrMsg() string

func (*RespChannelJoin) ProtoMessage

func (*RespChannelJoin) ProtoMessage()

func (*RespChannelJoin) Reset

func (m *RespChannelJoin) Reset()

func (*RespChannelJoin) String

func (m *RespChannelJoin) String() string

func (*RespChannelJoin) XXX_DiscardUnknown

func (m *RespChannelJoin) XXX_DiscardUnknown()

func (*RespChannelJoin) XXX_Marshal

func (m *RespChannelJoin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespChannelJoin) XXX_Merge

func (m *RespChannelJoin) XXX_Merge(src proto.Message)

func (*RespChannelJoin) XXX_Size

func (m *RespChannelJoin) XXX_Size() int

func (*RespChannelJoin) XXX_Unmarshal

func (m *RespChannelJoin) XXX_Unmarshal(b []byte) error

type RespChannelList

type RespChannelList struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg               string   `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	ChannelIDs           []string `protobuf:"bytes,3,rep,name=channelIDs,proto3" json:"channelIDs,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RespChannelList) Descriptor

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

func (*RespChannelList) GetChannelIDs

func (m *RespChannelList) GetChannelIDs() []string

func (*RespChannelList) GetCode

func (m *RespChannelList) GetCode() Code

func (*RespChannelList) GetErrMsg

func (m *RespChannelList) GetErrMsg() string

func (*RespChannelList) ProtoMessage

func (*RespChannelList) ProtoMessage()

func (*RespChannelList) Reset

func (m *RespChannelList) Reset()

func (*RespChannelList) String

func (m *RespChannelList) String() string

func (*RespChannelList) XXX_DiscardUnknown

func (m *RespChannelList) XXX_DiscardUnknown()

func (*RespChannelList) XXX_Marshal

func (m *RespChannelList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespChannelList) XXX_Merge

func (m *RespChannelList) XXX_Merge(src proto.Message)

func (*RespChannelList) XXX_Size

func (m *RespChannelList) XXX_Size() int

func (*RespChannelList) XXX_Unmarshal

func (m *RespChannelList) XXX_Unmarshal(b []byte) error

type RespChannelSign

type RespChannelSign struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg string `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	// 通道配置区块更新信息
	EnvelopeBytes        []byte   `protobuf:"bytes,3,opt,name=envelopeBytes,proto3" json:"envelopeBytes,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RespChannelSign) Descriptor

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

func (*RespChannelSign) GetCode

func (m *RespChannelSign) GetCode() Code

func (*RespChannelSign) GetEnvelopeBytes

func (m *RespChannelSign) GetEnvelopeBytes() []byte

func (*RespChannelSign) GetErrMsg

func (m *RespChannelSign) GetErrMsg() string

func (*RespChannelSign) ProtoMessage

func (*RespChannelSign) ProtoMessage()

func (*RespChannelSign) Reset

func (m *RespChannelSign) Reset()

func (*RespChannelSign) String

func (m *RespChannelSign) String() string

func (*RespChannelSign) XXX_DiscardUnknown

func (m *RespChannelSign) XXX_DiscardUnknown()

func (*RespChannelSign) XXX_Marshal

func (m *RespChannelSign) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespChannelSign) XXX_Merge

func (m *RespChannelSign) XXX_Merge(src proto.Message)

func (*RespChannelSign) XXX_Size

func (m *RespChannelSign) XXX_Size() int

func (*RespChannelSign) XXX_Unmarshal

func (m *RespChannelSign) XXX_Unmarshal(b []byte) error

type RespChannelUpdateBlock

type RespChannelUpdateBlock struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg string `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	// 通道配置区块更新信息
	EnvelopeBytes        []byte   `protobuf:"bytes,3,opt,name=envelopeBytes,proto3" json:"envelopeBytes,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RespChannelUpdateBlock) Descriptor

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

func (*RespChannelUpdateBlock) GetCode

func (m *RespChannelUpdateBlock) GetCode() Code

func (*RespChannelUpdateBlock) GetEnvelopeBytes

func (m *RespChannelUpdateBlock) GetEnvelopeBytes() []byte

func (*RespChannelUpdateBlock) GetErrMsg

func (m *RespChannelUpdateBlock) GetErrMsg() string

func (*RespChannelUpdateBlock) ProtoMessage

func (*RespChannelUpdateBlock) ProtoMessage()

func (*RespChannelUpdateBlock) Reset

func (m *RespChannelUpdateBlock) Reset()

func (*RespChannelUpdateBlock) String

func (m *RespChannelUpdateBlock) String() string

func (*RespChannelUpdateBlock) XXX_DiscardUnknown

func (m *RespChannelUpdateBlock) XXX_DiscardUnknown()

func (*RespChannelUpdateBlock) XXX_Marshal

func (m *RespChannelUpdateBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespChannelUpdateBlock) XXX_Merge

func (m *RespChannelUpdateBlock) XXX_Merge(src proto.Message)

func (*RespChannelUpdateBlock) XXX_Size

func (m *RespChannelUpdateBlock) XXX_Size() int

func (*RespChannelUpdateBlock) XXX_Unmarshal

func (m *RespChannelUpdateBlock) XXX_Unmarshal(b []byte) error

type RespPeerCollectionsConfig

type RespPeerCollectionsConfig struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg               string   `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RespPeerCollectionsConfig) Descriptor

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

func (*RespPeerCollectionsConfig) GetCode

func (m *RespPeerCollectionsConfig) GetCode() Code

func (*RespPeerCollectionsConfig) GetErrMsg

func (m *RespPeerCollectionsConfig) GetErrMsg() string

func (*RespPeerCollectionsConfig) ProtoMessage

func (*RespPeerCollectionsConfig) ProtoMessage()

func (*RespPeerCollectionsConfig) Reset

func (m *RespPeerCollectionsConfig) Reset()

func (*RespPeerCollectionsConfig) String

func (m *RespPeerCollectionsConfig) String() string

func (*RespPeerCollectionsConfig) XXX_DiscardUnknown

func (m *RespPeerCollectionsConfig) XXX_DiscardUnknown()

func (*RespPeerCollectionsConfig) XXX_Marshal

func (m *RespPeerCollectionsConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespPeerCollectionsConfig) XXX_Merge

func (m *RespPeerCollectionsConfig) XXX_Merge(src proto.Message)

func (*RespPeerCollectionsConfig) XXX_Size

func (m *RespPeerCollectionsConfig) XXX_Size() int

func (*RespPeerCollectionsConfig) XXX_Unmarshal

func (m *RespPeerCollectionsConfig) XXX_Unmarshal(b []byte) error

type RespPeerInstalled

type RespPeerInstalled struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg               string           `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	CcInfos              []*ChainCodeInfo `protobuf:"bytes,3,rep,name=ccInfos,proto3" json:"ccInfos,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*RespPeerInstalled) Descriptor

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

func (*RespPeerInstalled) GetCcInfos

func (m *RespPeerInstalled) GetCcInfos() []*ChainCodeInfo

func (*RespPeerInstalled) GetCode

func (m *RespPeerInstalled) GetCode() Code

func (*RespPeerInstalled) GetErrMsg

func (m *RespPeerInstalled) GetErrMsg() string

func (*RespPeerInstalled) ProtoMessage

func (*RespPeerInstalled) ProtoMessage()

func (*RespPeerInstalled) Reset

func (m *RespPeerInstalled) Reset()

func (*RespPeerInstalled) String

func (m *RespPeerInstalled) String() string

func (*RespPeerInstalled) XXX_DiscardUnknown

func (m *RespPeerInstalled) XXX_DiscardUnknown()

func (*RespPeerInstalled) XXX_Marshal

func (m *RespPeerInstalled) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespPeerInstalled) XXX_Merge

func (m *RespPeerInstalled) XXX_Merge(src proto.Message)

func (*RespPeerInstalled) XXX_Size

func (m *RespPeerInstalled) XXX_Size() int

func (*RespPeerInstalled) XXX_Unmarshal

func (m *RespPeerInstalled) XXX_Unmarshal(b []byte) error

type RespPeerInstantiated

type RespPeerInstantiated struct {
	// 请求返回结果:success=0;fail=1
	Code Code `protobuf:"varint,1,opt,name=code,proto3,enum=core.Code" json:"code,omitempty"`
	// 当且仅当返回码为1时,此处包含错误信息
	ErrMsg               string           `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
	CcInfos              []*ChainCodeInfo `protobuf:"bytes,3,rep,name=ccInfos,proto3" json:"ccInfos,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*RespPeerInstantiated) Descriptor

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

func (*RespPeerInstantiated) GetCcInfos

func (m *RespPeerInstantiated) GetCcInfos() []*ChainCodeInfo

func (*RespPeerInstantiated) GetCode

func (m *RespPeerInstantiated) GetCode() Code

func (*RespPeerInstantiated) GetErrMsg

func (m *RespPeerInstantiated) GetErrMsg() string

func (*RespPeerInstantiated) ProtoMessage

func (*RespPeerInstantiated) ProtoMessage()

func (*RespPeerInstantiated) Reset

func (m *RespPeerInstantiated) Reset()

func (*RespPeerInstantiated) String

func (m *RespPeerInstantiated) String() string

func (*RespPeerInstantiated) XXX_DiscardUnknown

func (m *RespPeerInstantiated) XXX_DiscardUnknown()

func (*RespPeerInstantiated) XXX_Marshal

func (m *RespPeerInstantiated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RespPeerInstantiated) XXX_Merge

func (m *RespPeerInstantiated) XXX_Merge(src proto.Message)

func (*RespPeerInstantiated) XXX_Size

func (m *RespPeerInstantiated) XXX_Size() int

func (*RespPeerInstantiated) XXX_Unmarshal

func (m *RespPeerInstantiated) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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