Jakub Dzikowski
Jakub Dzikowski
Yes, it should be `fablo-target` in my previous message. So, if they are in separate locations, I suspect some issues with Docker mounts. But I don't have a solution for...
We observed similar issues when there was not enough memory available for Docker. What are the limits on your remote VM? (both VM RAM and Docker RAM limits). I feel...
I think the solution is to edit this part: ``` const anchorPeerCountsInChannel = channel.orgs.map((o) => (o.anchorPeers || []).length); const maxPeerCount = anchorPeerCountsInChannel.reduce((a, b) => a + b, 0); const requiredPeerCount...
resolved in https://github.com/hyperledger-labs/fablo/pull/460
will be resolved with #468
explorer ports are `7010 + orgIndex`, so `7010` for the first organization, `7011` for the second one etc. Here is the code: ```typescript const getPortsForOrg = (orgIndex: number) => ({...
The proposed solution does not solve the issue. The actual error is not about mounting additional volumes for Fablo container. It is about mounting names in Docker Compose file for...
Yes, if I read action logs properly, it seems it requires Go in version 1.19 or higher. The chaincode is executed in a docker container, which uses `hyperledger/fabric-ccenv` image: https://hub.docker.com/r/hyperledger/fabric-ccenv....
I've read also your comment on failing Java chaincode for the newest version: https://github.com/hyperledger-labs/fablo/issues/99#issuecomment-2850024895 Isn't it just a matter of upgrading Java library version? * https://github.com/hyperledger/fabric-chaincode-java/blob/main/COMPATIBILITY.md * https://github.com/hyperledger-labs/fablo/blob/main/samples/chaincodes/chaincode-java-simple/build.gradle#L25 Do you...
Perfect, thanks!