-
Notifications
You must be signed in to change notification settings - Fork 0
/
transaction.go
56 lines (44 loc) · 1.47 KB
/
transaction.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package peer
import (
"fmt"
"github.com/hyperledger/fabric/protos/common"
"github.com/golang/protobuf/proto"
)
func init() {
common.PayloadDataMap[int32(common.HeaderType_ENDORSER_TRANSACTION)] = &Transaction{}
}
func (ta *TransactionAction) StaticallyOpaqueFields() []string {
return []string{"header", "payload"}
}
func (ta *TransactionAction) StaticallyOpaqueFieldProto(name string) (proto.Message, error) {
switch name {
case ta.StaticallyOpaqueFields()[0]:
return &common.SignatureHeader{}, nil
case ta.StaticallyOpaqueFields()[1]:
return &ChaincodeActionPayload{}, nil
default:
return nil, fmt.Errorf("not a marshaled field: %s", name)
}
}
func (cap *ChaincodeActionPayload) StaticallyOpaqueFields() []string {
return []string{"chaincode_proposal_payload"}
}
func (cap *ChaincodeActionPayload) StaticallyOpaqueFieldProto(name string) (proto.Message, error) {
if name != cap.StaticallyOpaqueFields()[0] {
return nil, fmt.Errorf("not a marshaled field: %s", name)
}
return &ChaincodeProposalPayload{}, nil
}
func (cae *ChaincodeEndorsedAction) StaticallyOpaqueFields() []string {
return []string{"proposal_response_payload"}
}
func (cae *ChaincodeEndorsedAction) StaticallyOpaqueFieldProto(name string) (proto.Message, error) {
if name != cae.StaticallyOpaqueFields()[0] {
return nil, fmt.Errorf("not a marshaled field: %s", name)
}
return &ProposalResponsePayload{}, nil
}