Environment: fabric release-2.2
My chaincode named vulnerable is as follows:
When I invoke helloworld directly, it gives me responce "helloworld", everything works fine.
When I invoke invokeDirectly, it also gives me responce "helloworld".
But when I invoke invokeSameContract method, it gives me
and chaincode docker container logging is as follows:
Observation of results above:
(1) the statement System.out.printf("\n%s\n", chaincodeName) works fine.
(2) org.hyperledger.fabric.shim.impl.InvocationStubImpl.invokeChaincode has reached the statement final ByteString response = this.handler.invoke(invokeChaincodeMessage);.
Environment: fabric release-2.2 My chaincode named vulnerable is as follows:
and chaincode docker container logging is as follows:
Observation of results above: (1) the statement
System.out.printf("\n%s\n", chaincodeName)
works fine. (2)org.hyperledger.fabric.shim.impl.InvocationStubImpl.invokeChaincode
has reached the statementfinal ByteString response = this.handler.invoke(invokeChaincodeMessage);
.