0

Is there a function that enables me to invoke or query another chaincode in Java. The Go equivalent for what I am looking: func (stub *ChaincodeStub) InvokeChaincode.

Peter Badida
  • 11,310
  • 10
  • 44
  • 90
Sanjay S B
  • 259
  • 2
  • 15

1 Answers1

1

Looks like java has an equivalent. Can't find any published docs but here is a link to the source file for the stub interface. https://github.com/hyperledger/fabric-chaincode-java/blob/8cca4bb4a90806bb6d3877dffb812643b6cebc19/fabric-chaincode-shim/src/main/java/org/hyperledger/fabric/shim/ChaincodeStub.java#L116

david_k
  • 5,843
  • 2
  • 9
  • 16