63 Star 183 Fork 3

Gitee 极速下载/hyperledger-fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
transaction.pb.go 17.72 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: token/transaction.proto
package token // import "github.com/hyperledger/fabric/protos/token"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
// TokenTransaction governs the structure of Payload.data, when
// the transaction's envelope header indicates a transaction of type
// "Token"
type TokenTransaction struct {
// action carries the content of this transaction.
//
// Types that are valid to be assigned to Action:
// *TokenTransaction_PlainAction
Action isTokenTransaction_Action `protobuf_oneof:"action"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *TokenTransaction) Reset() { *m = TokenTransaction{} }
func (m *TokenTransaction) String() string { return proto.CompactTextString(m) }
func (*TokenTransaction) ProtoMessage() {}
func (*TokenTransaction) Descriptor() ([]byte, []int) {
return fileDescriptor_transaction_3ad285c2bea2948b, []int{0}
}
func (m *TokenTransaction) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TokenTransaction.Unmarshal(m, b)
}
func (m *TokenTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_TokenTransaction.Marshal(b, m, deterministic)
}
func (dst *TokenTransaction) XXX_Merge(src proto.Message) {
xxx_messageInfo_TokenTransaction.Merge(dst, src)
}
func (m *TokenTransaction) XXX_Size() int {
return xxx_messageInfo_TokenTransaction.Size(m)
}
func (m *TokenTransaction) XXX_DiscardUnknown() {
xxx_messageInfo_TokenTransaction.DiscardUnknown(m)
}
var xxx_messageInfo_TokenTransaction proto.InternalMessageInfo
type isTokenTransaction_Action interface {
isTokenTransaction_Action()
}
type TokenTransaction_PlainAction struct {
PlainAction *PlainTokenAction `protobuf:"bytes,1,opt,name=plain_action,json=plainAction,oneof"`
}
func (*TokenTransaction_PlainAction) isTokenTransaction_Action() {}
func (m *TokenTransaction) GetAction() isTokenTransaction_Action {
if m != nil {
return m.Action
}
return nil
}
func (m *TokenTransaction) GetPlainAction() *PlainTokenAction {
if x, ok := m.GetAction().(*TokenTransaction_PlainAction); ok {
return x.PlainAction
}
return nil
}
// XXX_OneofFuncs is for the internal use of the proto package.
func (*TokenTransaction) 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{}) {
return _TokenTransaction_OneofMarshaler, _TokenTransaction_OneofUnmarshaler, _TokenTransaction_OneofSizer, []interface{}{
(*TokenTransaction_PlainAction)(nil),
}
}
func _TokenTransaction_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*TokenTransaction)
// action
switch x := m.Action.(type) {
case *TokenTransaction_PlainAction:
b.EncodeVarint(1<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.PlainAction); err != nil {
return err
}
case nil:
default:
return fmt.Errorf("TokenTransaction.Action has unexpected type %T", x)
}
return nil
}
func _TokenTransaction_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*TokenTransaction)
switch tag {
case 1: // action.plain_action
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(PlainTokenAction)
err := b.DecodeMessage(msg)
m.Action = &TokenTransaction_PlainAction{msg}
return true, err
default:
return false, nil
}
}
func _TokenTransaction_OneofSizer(msg proto.Message) (n int) {
m := msg.(*TokenTransaction)
// action
switch x := m.Action.(type) {
case *TokenTransaction_PlainAction:
s := proto.Size(x.PlainAction)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
}
// PlainTokenAction governs the structure of a token action that is
// subjected to no privacy restrictions
type PlainTokenAction struct {
// Types that are valid to be assigned to Data:
// *PlainTokenAction_PlainImport
// *PlainTokenAction_PlainTransfer
Data isPlainTokenAction_Data `protobuf_oneof:"data"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PlainTokenAction) Reset() { *m = PlainTokenAction{} }
func (m *PlainTokenAction) String() string { return proto.CompactTextString(m) }
func (*PlainTokenAction) ProtoMessage() {}
func (*PlainTokenAction) Descriptor() ([]byte, []int) {
return fileDescriptor_transaction_3ad285c2bea2948b, []int{1}
}
func (m *PlainTokenAction) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PlainTokenAction.Unmarshal(m, b)
}
func (m *PlainTokenAction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PlainTokenAction.Marshal(b, m, deterministic)
}
func (dst *PlainTokenAction) XXX_Merge(src proto.Message) {
xxx_messageInfo_PlainTokenAction.Merge(dst, src)
}
func (m *PlainTokenAction) XXX_Size() int {
return xxx_messageInfo_PlainTokenAction.Size(m)
}
func (m *PlainTokenAction) XXX_DiscardUnknown() {
xxx_messageInfo_PlainTokenAction.DiscardUnknown(m)
}
var xxx_messageInfo_PlainTokenAction proto.InternalMessageInfo
type isPlainTokenAction_Data interface {
isPlainTokenAction_Data()
}
type PlainTokenAction_PlainImport struct {
PlainImport *PlainImport `protobuf:"bytes,1,opt,name=plain_import,json=plainImport,oneof"`
}
type PlainTokenAction_PlainTransfer struct {
PlainTransfer *PlainTransfer `protobuf:"bytes,2,opt,name=plain_transfer,json=plainTransfer,oneof"`
}
func (*PlainTokenAction_PlainImport) isPlainTokenAction_Data() {}
func (*PlainTokenAction_PlainTransfer) isPlainTokenAction_Data() {}
func (m *PlainTokenAction) GetData() isPlainTokenAction_Data {
if m != nil {
return m.Data
}
return nil
}
func (m *PlainTokenAction) GetPlainImport() *PlainImport {
if x, ok := m.GetData().(*PlainTokenAction_PlainImport); ok {
return x.PlainImport
}
return nil
}
func (m *PlainTokenAction) GetPlainTransfer() *PlainTransfer {
if x, ok := m.GetData().(*PlainTokenAction_PlainTransfer); ok {
return x.PlainTransfer
}
return nil
}
// XXX_OneofFuncs is for the internal use of the proto package.
func (*PlainTokenAction) 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{}) {
return _PlainTokenAction_OneofMarshaler, _PlainTokenAction_OneofUnmarshaler, _PlainTokenAction_OneofSizer, []interface{}{
(*PlainTokenAction_PlainImport)(nil),
(*PlainTokenAction_PlainTransfer)(nil),
}
}
func _PlainTokenAction_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*PlainTokenAction)
// data
switch x := m.Data.(type) {
case *PlainTokenAction_PlainImport:
b.EncodeVarint(1<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.PlainImport); err != nil {
return err
}
case *PlainTokenAction_PlainTransfer:
b.EncodeVarint(2<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.PlainTransfer); err != nil {
return err
}
case nil:
default:
return fmt.Errorf("PlainTokenAction.Data has unexpected type %T", x)
}
return nil
}
func _PlainTokenAction_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*PlainTokenAction)
switch tag {
case 1: // data.plain_import
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(PlainImport)
err := b.DecodeMessage(msg)
m.Data = &PlainTokenAction_PlainImport{msg}
return true, err
case 2: // data.plain_transfer
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(PlainTransfer)
err := b.DecodeMessage(msg)
m.Data = &PlainTokenAction_PlainTransfer{msg}
return true, err
default:
return false, nil
}
}
func _PlainTokenAction_OneofSizer(msg proto.Message) (n int) {
m := msg.(*PlainTokenAction)
// data
switch x := m.Data.(type) {
case *PlainTokenAction_PlainImport:
s := proto.Size(x.PlainImport)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case *PlainTokenAction_PlainTransfer:
s := proto.Size(x.PlainTransfer)
n += 1 // tag and wire
n += proto.SizeVarint(uint64(s))
n += s
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
}
// PlainImport specifies an import of one or more tokens in plaintext format
type PlainImport struct {
// An import transaction may contain one or more outputs
Outputs []*PlainOutput `protobuf:"bytes,1,rep,name=outputs" json:"outputs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PlainImport) Reset() { *m = PlainImport{} }
func (m *PlainImport) String() string { return proto.CompactTextString(m) }
func (*PlainImport) ProtoMessage() {}
func (*PlainImport) Descriptor() ([]byte, []int) {
return fileDescriptor_transaction_3ad285c2bea2948b, []int{2}
}
func (m *PlainImport) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PlainImport.Unmarshal(m, b)
}
func (m *PlainImport) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PlainImport.Marshal(b, m, deterministic)
}
func (dst *PlainImport) XXX_Merge(src proto.Message) {
xxx_messageInfo_PlainImport.Merge(dst, src)
}
func (m *PlainImport) XXX_Size() int {
return xxx_messageInfo_PlainImport.Size(m)
}
func (m *PlainImport) XXX_DiscardUnknown() {
xxx_messageInfo_PlainImport.DiscardUnknown(m)
}
var xxx_messageInfo_PlainImport proto.InternalMessageInfo
func (m *PlainImport) GetOutputs() []*PlainOutput {
if m != nil {
return m.Outputs
}
return nil
}
// PlainTransfer specifies a transfer or one or more plaintext tokens to one or more outputs
type PlainTransfer struct {
// The inputs to the transfer transaction are specified by their ID
Inputs []*InputId `protobuf:"bytes,1,rep,name=inputs" json:"inputs,omitempty"`
// A transfer transaction may contain one or more outputs
Outputs []*PlainOutput `protobuf:"bytes,2,rep,name=outputs" json:"outputs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PlainTransfer) Reset() { *m = PlainTransfer{} }
func (m *PlainTransfer) String() string { return proto.CompactTextString(m) }
func (*PlainTransfer) ProtoMessage() {}
func (*PlainTransfer) Descriptor() ([]byte, []int) {
return fileDescriptor_transaction_3ad285c2bea2948b, []int{3}
}
func (m *PlainTransfer) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PlainTransfer.Unmarshal(m, b)
}
func (m *PlainTransfer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PlainTransfer.Marshal(b, m, deterministic)
}
func (dst *PlainTransfer) XXX_Merge(src proto.Message) {
xxx_messageInfo_PlainTransfer.Merge(dst, src)
}
func (m *PlainTransfer) XXX_Size() int {
return xxx_messageInfo_PlainTransfer.Size(m)
}
func (m *PlainTransfer) XXX_DiscardUnknown() {
xxx_messageInfo_PlainTransfer.DiscardUnknown(m)
}
var xxx_messageInfo_PlainTransfer proto.InternalMessageInfo
func (m *PlainTransfer) GetInputs() []*InputId {
if m != nil {
return m.Inputs
}
return nil
}
func (m *PlainTransfer) GetOutputs() []*PlainOutput {
if m != nil {
return m.Outputs
}
return nil
}
// A PlainOutput is the result of import and transfer transactions using plaintext tokens
type PlainOutput struct {
// The owner is the serialization of a SerializedIdentity struct
Owner []byte `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
// The token type
Type string `protobuf:"bytes,2,opt,name=type" json:"type,omitempty"`
// The quantity of tokens
Quantity uint64 `protobuf:"varint,3,opt,name=quantity" json:"quantity,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PlainOutput) Reset() { *m = PlainOutput{} }
func (m *PlainOutput) String() string { return proto.CompactTextString(m) }
func (*PlainOutput) ProtoMessage() {}
func (*PlainOutput) Descriptor() ([]byte, []int) {
return fileDescriptor_transaction_3ad285c2bea2948b, []int{4}
}
func (m *PlainOutput) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PlainOutput.Unmarshal(m, b)
}
func (m *PlainOutput) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PlainOutput.Marshal(b, m, deterministic)
}
func (dst *PlainOutput) XXX_Merge(src proto.Message) {
xxx_messageInfo_PlainOutput.Merge(dst, src)
}
func (m *PlainOutput) XXX_Size() int {
return xxx_messageInfo_PlainOutput.Size(m)
}
func (m *PlainOutput) XXX_DiscardUnknown() {
xxx_messageInfo_PlainOutput.DiscardUnknown(m)
}
var xxx_messageInfo_PlainOutput proto.InternalMessageInfo
func (m *PlainOutput) GetOwner() []byte {
if m != nil {
return m.Owner
}
return nil
}
func (m *PlainOutput) GetType() string {
if m != nil {
return m.Type
}
return ""
}
func (m *PlainOutput) GetQuantity() uint64 {
if m != nil {
return m.Quantity
}
return 0
}
// An InputId specifies an output using the transaction ID and the index of the output in the transaction
type InputId struct {
// The transaction ID
TxId []byte `protobuf:"bytes,1,opt,name=tx_id,json=txId,proto3" json:"tx_id,omitempty"`
// The index of the output in the transaction
Index uint32 `protobuf:"varint,2,opt,name=index" json:"index,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *InputId) Reset() { *m = InputId{} }
func (m *InputId) String() string { return proto.CompactTextString(m) }
func (*InputId) ProtoMessage() {}
func (*InputId) Descriptor() ([]byte, []int) {
return fileDescriptor_transaction_3ad285c2bea2948b, []int{5}
}
func (m *InputId) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_InputId.Unmarshal(m, b)
}
func (m *InputId) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_InputId.Marshal(b, m, deterministic)
}
func (dst *InputId) XXX_Merge(src proto.Message) {
xxx_messageInfo_InputId.Merge(dst, src)
}
func (m *InputId) XXX_Size() int {
return xxx_messageInfo_InputId.Size(m)
}
func (m *InputId) XXX_DiscardUnknown() {
xxx_messageInfo_InputId.DiscardUnknown(m)
}
var xxx_messageInfo_InputId proto.InternalMessageInfo
func (m *InputId) GetTxId() []byte {
if m != nil {
return m.TxId
}
return nil
}
func (m *InputId) GetIndex() uint32 {
if m != nil {
return m.Index
}
return 0
}
func init() {
proto.RegisterType((*TokenTransaction)(nil), "TokenTransaction")
proto.RegisterType((*PlainTokenAction)(nil), "PlainTokenAction")
proto.RegisterType((*PlainImport)(nil), "PlainImport")
proto.RegisterType((*PlainTransfer)(nil), "PlainTransfer")
proto.RegisterType((*PlainOutput)(nil), "PlainOutput")
proto.RegisterType((*InputId)(nil), "InputId")
}
func init() {
proto.RegisterFile("token/transaction.proto", fileDescriptor_transaction_3ad285c2bea2948b)
}
var fileDescriptor_transaction_3ad285c2bea2948b = []byte{
// 340 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0x4f, 0x4f, 0xc2, 0x40,
0x10, 0xc5, 0x29, 0x94, 0x82, 0xc3, 0x9f, 0xe0, 0x6a, 0x62, 0xe3, 0xa9, 0xe9, 0xc1, 0x10, 0x63,
0xda, 0xf8, 0xff, 0x2c, 0x27, 0x7a, 0xd2, 0xac, 0x5c, 0xf4, 0x42, 0x0a, 0x5d, 0x60, 0x23, 0xec,
0xd6, 0x65, 0x1b, 0xe1, 0x0b, 0xf8, 0xb9, 0x4d, 0x67, 0x0b, 0x54, 0x0f, 0xde, 0xfa, 0xde, 0xcc,
0xfc, 0xe6, 0x75, 0x33, 0x70, 0xa6, 0xe5, 0x07, 0x13, 0xa1, 0x56, 0xb1, 0x58, 0xc7, 0x53, 0xcd,
0xa5, 0x08, 0x52, 0x25, 0xb5, 0xf4, 0x47, 0xd0, 0x1b, 0xe5, 0xa5, 0xd1, 0xa1, 0x42, 0x1e, 0xa0,
0x9d, 0x2e, 0x63, 0x2e, 0xc6, 0x46, 0xbb, 0x96, 0x67, 0xf5, 0x5b, 0x37, 0xc7, 0xc1, 0x4b, 0x6e,
0x62, 0xf7, 0x13, 0x16, 0x86, 0x15, 0xda, 0xc2, 0x46, 0x23, 0x07, 0x4d, 0x70, 0xcc, 0x84, 0xff,
0x6d, 0x41, 0xef, 0x6f, 0x37, 0xb9, 0xde, 0x61, 0xf9, 0x2a, 0x95, 0x4a, 0x17, 0xd8, 0xb6, 0xc1,
0x46, 0xe8, 0xed, 0x89, 0x46, 0x92, 0x47, 0xe8, 0x9a, 0x11, 0x0c, 0x3e, 0x63, 0xca, 0xad, 0xe2,
0x50, 0xb7, 0xc8, 0x52, 0xb8, 0xc3, 0x0a, 0xed, 0xa4, 0x65, 0x63, 0xe0, 0x80, 0x9d, 0xc4, 0x3a,
0xf6, 0xef, 0xa1, 0x55, 0xc2, 0x93, 0x0b, 0x68, 0xc8, 0x4c, 0xa7, 0x99, 0x5e, 0xbb, 0x96, 0x57,
0x3b, 0x6c, 0x7f, 0x46, 0x93, 0xee, 0x8a, 0xfe, 0x1b, 0x74, 0x7e, 0x2d, 0x20, 0x1e, 0x38, 0x5c,
0x94, 0xe6, 0x9a, 0x41, 0x94, 0xcb, 0x28, 0xa1, 0x85, 0x5f, 0x46, 0x57, 0xff, 0x43, 0xbf, 0x16,
0x89, 0x8c, 0x4f, 0x4e, 0xa1, 0x2e, 0xbf, 0x04, 0x53, 0xf8, 0x1a, 0x6d, 0x6a, 0x04, 0x21, 0x60,
0xeb, 0x6d, 0xca, 0xf0, 0x6f, 0x8f, 0x28, 0x7e, 0x93, 0x73, 0x68, 0x7e, 0x66, 0xb1, 0xd0, 0x5c,
0x6f, 0xdd, 0x9a, 0x67, 0xf5, 0x6d, 0xba, 0xd7, 0xfe, 0x1d, 0x34, 0x8a, 0x3c, 0xe4, 0x04, 0xea,
0x7a, 0x33, 0xe6, 0x49, 0x01, 0xb4, 0xf5, 0x26, 0x4a, 0xf2, 0x2d, 0x5c, 0x24, 0x6c, 0x83, 0xc0,
0x0e, 0x35, 0x62, 0x70, 0xf5, 0x7e, 0x39, 0xe7, 0x7a, 0x91, 0x4d, 0x82, 0xa9, 0x5c, 0x85, 0x8b,
0x6d, 0xca, 0xd4, 0x92, 0x25, 0x73, 0xa6, 0xc2, 0x59, 0x3c, 0x51, 0x7c, 0x1a, 0xe2, 0x89, 0xac,
0x43, 0xbc, 0x9d, 0x89, 0x83, 0xea, 0xf6, 0x27, 0x00, 0x00, 0xff, 0xff, 0x11, 0x6e, 0x94, 0xbf,
0x4b, 0x02, 0x00, 0x00,
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/hyperledger-fabric.git
git@gitee.com:mirrors/hyperledger-fabric.git
mirrors
hyperledger-fabric
hyperledger-fabric
v1.3.0-rc1

搜索帮助