Reputation: 1720
I'm currently using HL Composer [v0.18.2] to be able to interact with the IBM Blockchain Platform (Starter Plan) on IBM Cloud.
I executed the following steps:
But when I try to start the network with "composer network start ...."
i'm getting this error:
Starting business network definition. This may take a minute...
Error: Error trying to instantiate composer runtime. Error: No valid responses from any peers.
Response from attempted peer comms was an error: Error: 2 UNKNOWN: chaincode error (status: 500, message: instantiation policy violation: signature set did not satisfy policy)
Does anyone have an idea about the problem?
Thanks
Upvotes: 2
Views: 701
Reputation: 176
Starter Plan is only compatible with Composer v0.18.1
First, uninstall Composer completely
npm uninstall -g composer-cli
Then, install Composer v0.18.1
npm install -g [email protected]
Now, take the steps for deploying your .bna as before. If the problem persists, ensure you have the latest version of Node (v8.10.0) and npm (5.6.0).
Upvotes: 2