0

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

我面临以下错误,

(节点:44363)UnhandledPromiseRejectionWarning:错误:找不到合同 ID W1CC 的详细信息

4

1 回答 1

0

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

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

module.exports.run = function() {
  let args = generateWorkload();
  return bc.invokeSmartContract(contx, 'nameofchaincode', 'v0', args, 100); 
};
于 2020-06-17T09:36:51.040 回答