UnhandledPromiseRejectionWarning: Error: Could not find details for contract ID

UnhandledPromiseRejectionWarning: Error: Could not find details for contract ID

在尝试调用和查询网络中现有安装的链代码时, 使用 caliper launch master --caliper-workspace 。 --caliper-benchconfig benchmarks/scenario/simple/createPool.yaml --caliper-networkconfig networks/Azure_fabric-go.yaml --caliper-flow-only-test

我面临以下错误,

(node:44363) UnhandledPromiseRejectionWarning: 错误: 找不到合约 ID W1CC 的详细信息

当卡尺找不到您的合同名称时,就会发生这种情况。请确保您的 chaincode 名称正确或已安装在频道中。

示例:- /benchmarks/scenario/simple/open.js

module.exports.run = function() {
  let args = generateWorkload();
  return bc.invokeSmartContract(contx, 'nameofchaincode', 'v0', args, 100); 
};