forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chaincode.go
75 lines (57 loc) · 1.35 KB
/
chaincode.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package peer
// Name implements the platforms.NameDescriber interface
func (cs *ChaincodeSpec) Name() string {
if cs.ChaincodeId == nil {
return ""
}
return cs.ChaincodeId.Name
}
func (cs *ChaincodeSpec) Version() string {
if cs.ChaincodeId == nil {
return ""
}
return cs.ChaincodeId.Version
}
// Path implements the platforms.PathDescriber interface
func (cs *ChaincodeSpec) Path() string {
if cs.ChaincodeId == nil {
return ""
}
return cs.ChaincodeId.Path
}
func (cs *ChaincodeSpec) CCType() string {
return cs.Type.String()
}
// Path implements the platforms.PathDescriber interface
func (cds *ChaincodeDeploymentSpec) Path() string {
if cds.ChaincodeSpec == nil {
return ""
}
return cds.ChaincodeSpec.Path()
}
// Bytes implements the platforms.CodePackage interface
func (cds *ChaincodeDeploymentSpec) Bytes() []byte {
return cds.CodePackage
}
func (cds *ChaincodeDeploymentSpec) CCType() string {
if cds.ChaincodeSpec == nil {
return ""
}
return cds.ChaincodeSpec.CCType()
}
func (cds *ChaincodeDeploymentSpec) Name() string {
if cds.ChaincodeSpec == nil {
return ""
}
return cds.ChaincodeSpec.Name()
}
func (cds *ChaincodeDeploymentSpec) Version() string {
if cds.ChaincodeSpec == nil {
return ""
}
return cds.ChaincodeSpec.Version()
}