peer lifecycle chaincode querycommitted --channelID mychannel --name helloworld --cafile ${PWD}/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem
时间: 2023-06-21 08:03:25 浏览: 100
通信与网络中的Moxa新一代peer-to-peer主动式以太网I/O服务器
该命令是用于查询已经提交到通道的智能合约的信息,其中:
- `--channelID` 参数指定了要查询的通道的 ID。
- `--name` 参数指定了要查询的智能合约的名称。
- `--cafile` 参数指定了 TLS CA 证书的路径,用于与 Orderer 节点建立安全连接。
执行该命令后,会返回已经提交到通道的智能合约的信息,包括版本、哈希值、所属组织等。
阅读全文