We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 653b724 commit 152b0b6Copy full SHA for 152b0b6
libraries/fabric-shim/lib/handler.js
@@ -328,8 +328,8 @@ class ChaincodeMessageHandler {
328
// can not process any message other than "ready"
329
// from the peer when in "established" state
330
// send an error message telling the peer about this
331
- logger.error(util.format('Chaincode is in "ready" state, can only ' +
332
- 'process messages of type "established", but received "%s"', msg.type));
+ logger.error(util.format('Chaincode is in "established" state, can only ' +
+ 'process messages of type "ready", but received "%s"', msg.type));
333
const errMsg = newErrorMsg(msg, state);
334
stream.write(errMsg);
335
}
0 commit comments