forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proposal.go
40 lines (32 loc) · 953 Bytes
/
proposal.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
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package peer
import (
"fmt"
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric/protos/ledger/rwset"
)
func (cpp *ChaincodeProposalPayload) StaticallyOpaqueFields() []string {
return []string{"input"}
}
func (cpp *ChaincodeProposalPayload) StaticallyOpaqueFieldProto(name string) (proto.Message, error) {
if name != cpp.StaticallyOpaqueFields()[0] {
return nil, fmt.Errorf("not a marshaled field: %s", name)
}
return &ChaincodeInvocationSpec{}, nil
}
func (ca *ChaincodeAction) StaticallyOpaqueFields() []string {
return []string{"results", "events"}
}
func (ca *ChaincodeAction) StaticallyOpaqueFieldProto(name string) (proto.Message, error) {
switch name {
case "results":
return &rwset.TxReadWriteSet{}, nil
case "events":
return &ChaincodeEvent{}, nil
default:
return nil, fmt.Errorf("not a marshaled field: %s", name)
}
}