Re: Error: could not assemble transaction: ProposalResponsePayloads do not match
Kimheng SOK
I got this error often, the reason is all the peer node execute their own chaincode individually and even if the result is successful, it doesn't means that all the payload are the same. By looking at the payload we can see that the output from different peer are different. So to solve the problem is to find the root cause inside our chaincode that make the different output. Normally I try to print the output step by step to see where there is the problem and solve it. I used Nodejs chaincode, so console.log and console.info is what help me to see the inequality of the output, and then using docker logs ChaincodeContainerID to view the output.
On Wed, Jan 29, 2020 at 1:29 AM Siddharth Jain <siddjain@...> wrote:
|
|