Closed sami96h closed 1 year ago
Issues related to Node chaincode should be addressed to the fabric-chaincode-node repository. However...
Cross chaincode calls to the qscc (and cscc) system chaincode do seem to be explicitly disallowed. Perhaps you will need to return the transaction IDs of interest from your smart contract, and then have the client separately evaluate the qscc chaincode's GetTransactionByID transaction function.
Im trying to retrieve transaction details using the GetTransactionByID function , but im getting this error => "Rejecting invoke of QSCC from another chaincode because of potential for deadlocks, original invocation for 'demo-contract'"
Here is the code : async GetAllResults(ctx, iterator) { let allResults = []; let res = { done: false, value: null };