前提・実現したいこと
『Hyperledger Fabricによるアプリケーションによるアプリケーション』を学んでいます。
この本の中に「cartransfer」というサンプルアプリケーションがあり実行したいのですが、うまく動きません。
発生している問題・エラーメッセージ
チェーンコードのインストールはできるのですが、インスタンス化ができず以下のようなエラーが出ます。
$ node scripts/registerUser.js registerUser-user:admin cnt:1 registerUser-user:alice cnt:2 registerUser-user:bob cnt:3 registerUser-user:charlie cnt:4 Successfully enrolled member user admin setUserContext user admin success register.[object Object] Successfully registered charlie - secret:charliepw Successfully registered bob - secret:bobpw Successfully registered alice - secret:alicepw Successfully enrolled member user bob setUserContext user bob success register.[object Object] Successfully enrolled member user charlie setUserContext user charlie success register.[object Object] Successfully enrolled member user alice setUserContext user alice success register.[object Object] Promise.all cnt:4 $ node scripts/deploy.js service.install org:org1 chaincode.id:cartransfer CONFIG.chaincode.path:cartransfer/main ver:1576054351511 service.install org:org2 chaincode.id:cartransfer CONFIG.chaincode.path:cartransfer/main ver:1576054351511 service.install org:org3 chaincode.id:cartransfer CONFIG.chaincode.path:cartransfer/main ver:1576054351511 2019-12-11T08:52:32.046Z - info: [blockchainService]: Success installChaincode 2019-12-11T08:52:32.049Z - info: [blockchainService]: transaction proposal : No. 0 was good 2019-12-11T08:52:32.050Z - info: [blockchainService]: Successfully sent Proposal and received ProposalResponse: Status - 200, message - "", metadata - "OK" install result:true 2019-12-11T08:52:32.054Z - info: [blockchainService]: Success installChaincode 2019-12-11T08:52:32.055Z - info: [blockchainService]: transaction proposal : No. 0 was good 2019-12-11T08:52:32.056Z - info: [blockchainService]: Successfully sent Proposal and received ProposalResponse: Status - 200, message - "", metadata - "OK" install result:true 2019-12-11T08:52:32.058Z - info: [blockchainService]: Success installChaincode 2019-12-11T08:52:32.060Z - info: [blockchainService]: transaction proposal : No. 0 was good 2019-12-11T08:52:32.061Z - info: [blockchainService]: Successfully sent Proposal and received ProposalResponse: Status - 200, message - "", metadata - "OK" install result:true install have been processed successfully 2019-12-11T08:52:32.155Z - info: [blockchainService]: ** instantiate Chaincode 2019-12-11T08:57:32.271Z - info: [blockchainService]: Success instantiate/update Chaincode Proposal 2019-12-11T08:57:32.272Z - info: [blockchainService]: transaction proposal : No. 0 was bad 2019-12-11T08:57:32.273Z - info: [blockchainService]: transaction proposal : No. 1 was bad 2019-12-11T08:57:32.273Z - info: [blockchainService]: transaction proposal : No. 2 was bad 2019-12-11T08:57:32.273Z - error: [blockchainService]: Could NOT confirm all proposal response as endorsement policy. Msg : Error: timeout expired while starting chaincode cartransfer:1576054351511 for transaction Failed to instantiate: {} ver:1576054351511 $ node scripts/deploy.js service.install org:org1 chaincode.id:cartransfer CONFIG.chaincode.path:cartransfer/main ver:1576054672274 service.install org:org2 chaincode.id:cartransfer CONFIG.chaincode.path:cartransfer/main ver:1576054672274 service.install org:org3 chaincode.id:cartransfer CONFIG.chaincode.path:cartransfer/main ver:1576054672274 2019-12-11T08:57:52.796Z - info: [blockchainService]: Success installChaincode 2019-12-11T08:57:52.800Z - info: [blockchainService]: transaction proposal : No. 0 was good 2019-12-11T08:57:52.803Z - info: [blockchainService]: Successfully sent Proposal and received ProposalResponse: Status - 200, message - "", metadata - "OK" install result:true 2019-12-11T08:57:52.806Z - info: [blockchainService]: Success installChaincode 2019-12-11T08:57:52.807Z - info: [blockchainService]: transaction proposal : No. 0 was good 2019-12-11T08:57:52.809Z - info: [blockchainService]: Successfully sent Proposal and received ProposalResponse: Status - 200, message - "", metadata - "OK" install result:true 2019-12-11T08:57:52.814Z - info: [blockchainService]: Success installChaincode 2019-12-11T08:57:52.815Z - info: [blockchainService]: transaction proposal : No. 0 was good 2019-12-11T08:57:52.818Z - info: [blockchainService]: Successfully sent Proposal and received ProposalResponse: Status - 200, message - "", metadata - "OK" install result:true install have been processed successfully 2019-12-11T08:57:52.919Z - info: [blockchainService]: ** instantiate Chaincode 2019-12-11T09:02:53.058Z - info: [blockchainService]: Success instantiate/update Chaincode Proposal 2019-12-11T09:02:53.065Z - info: [blockchainService]: transaction proposal : No. 0 was bad 2019-12-11T09:02:53.065Z - info: [blockchainService]: transaction proposal : No. 1 was bad 2019-12-11T09:02:53.066Z - info: [blockchainService]: transaction proposal : No. 2 was bad 2019-12-11T09:02:53.066Z - error: [blockchainService]: Could NOT confirm all proposal response as endorsement policy. Msg : Error: timeout expired while starting chaincode cartransfer:1576054672274 for transaction Failed to instantiate: {} ver:1576054672274
試したこと
タイムアウトの問題なのかと思い、タイムアウトの時間を延ばしたのですがうまくいきませんでした。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー