Using the Hyperledger Fabric Java SDK with GO chaincode, I\'m getting an error after trying to initiate my chaincode using
channel.sendInstantiationProposal(instantiat
Turns out my chaincode used a dependency (scrypt in my case), which caused the build to fail. The code would pass its unit test and compile just fine, but it wouldn't run on peers because of this. You may want to install your go dependencies onto your ccenv (which is used to compile your chaincode), or in my case I ditched it in favor of Hyperledger Fabric 1.1's built-in encryption support.