Versions in this module Expand all Collapse all v0 v0.1.0 Sep 21, 2019 Changes in this version + var CallerAttrImpl = []func(stub interface{}) (bool, CallerAttributes) + var InnerInvokeImpl = []func(stub interface{}) (bool, InnerInvoke) + var NoImplError = errors.New("Not implied") + type CallerAttributes interface + GetCallerAttribute func(attributeName string) ([]byte, error) + GetCallerCertificate func() ([]byte, error) + func GetCallerAttributes(stub shim.ChaincodeStubInterface) (CallerAttributes, error) + func MockStubAttrImpl(stub interface{}) (bool, CallerAttributes) + type InnerInvoke interface + GetCallingChaincodeName func() string + GetOriginalChaincodeName func() string + InvokeChaincode func(chaincodeName string, method string, args [][]byte) ([]byte, error) + QueryChaincode func(chaincodeName string, method string, args [][]byte) ([]byte, error) + func GetInnerInvoke(stub shim.ChaincodeStubInterface) (InnerInvoke, error) + func MockStubInvokeImpl(stub interface{}) (bool, InnerInvoke)