Replies: 1 comment
-
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. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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 };
Beta Was this translation helpful? Give feedback.
All reactions