I followed this guide
https://github.com/hyperledger/fabric/blob/master/docs/dev-setup/devnet-setup.md
I deployed the chaincode as the command
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"]}'
It worked normally.
Then I modified the chaincode and re-deployed.
But I didn’t see this change impacting on validating peers.
Who could give me some ideas about this problem?