 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
- type SystemChaincode
- func (t *SystemChaincode) Init(stub shim.ChaincodeStubInterface, function string, args []string) ([]byte, error)
- func (t *SystemChaincode) Invoke(stub shim.ChaincodeStubInterface, function string, args []string) ([]byte, error)
- func (t *SystemChaincode) Query(stub shim.ChaincodeStubInterface, function string, args []string) ([]byte, error)
 
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SystemChaincode ¶
type SystemChaincode struct {
	// contains filtered or unexported fields
}
    SystemChaincode is type representing the chaincode In general, one should not use vars in memory that can hold state across invokes but this is used JUST for MOCKING
func (*SystemChaincode) Init ¶
func (t *SystemChaincode) Init(stub shim.ChaincodeStubInterface, function string, args []string) ([]byte, error)
Init initailizes the system chaincode
func (*SystemChaincode) Invoke ¶
func (t *SystemChaincode) Invoke(stub shim.ChaincodeStubInterface, function string, args []string) ([]byte, error)
Invoke runs an invocation on the system chaincode
func (*SystemChaincode) Query ¶
func (t *SystemChaincode) Query(stub shim.ChaincodeStubInterface, function string, args []string) ([]byte, error)
Query callback representing the query of a chaincode
 Click to show internal directories. 
   Click to hide internal directories.