我按照本指南
https://github.com/hyperledger/fabric/blob/master/docs/dev-setup/devnet-setup.md
我将链代码部署为命令
CORE_PEER_ADDRESS=172.17.0.2:30303 ./peer chaincode deploy -p github.com/hyperledger/fabric/examples/chaincode/go/chaincode_example02 -c '{"Function":"init", "Args": ["a", “100”、“b”、“200”]}'
它工作正常。
然后我修改了链码并重新部署。
但我没有看到这种变化会影响验证同行。
谁能给我一些关于这个问题的想法?