From eae6380722666190d045742849af933395b7b0cf Mon Sep 17 00:00:00 2001 From: osamamagdy Date: Thu, 5 Dec 2024 03:23:21 +0200 Subject: [PATCH] fix: edit folder mapping and bump cc-tools version Signed-off-by: osamamagdy --- ccapi/config/configsdk-org1.yaml | 2 +- ccapi/docker-compose-1org.yaml | 2 +- chaincode/go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ccapi/config/configsdk-org1.yaml b/ccapi/config/configsdk-org1.yaml index 93080f2..13d7994 100644 --- a/ccapi/config/configsdk-org1.yaml +++ b/ccapi/config/configsdk-org1.yaml @@ -49,7 +49,7 @@ client: # channels: # name of the channel - mychannel: + mainchannel: # Required. list of orderers designated by the application to use for transactions on this # channel. This list can be a result of access control ("org1" can only access "ordererA"), or # operational decisions to share loads from applications among the orderers. The values must diff --git a/ccapi/docker-compose-1org.yaml b/ccapi/docker-compose-1org.yaml index 5b0674d..14723de 100644 --- a/ccapi/docker-compose-1org.yaml +++ b/ccapi/docker-compose-1org.yaml @@ -13,7 +13,7 @@ services: - 80:80 volumes: - ./:/rest-server - - /src/github.com/hyperledger/fabric-private-chaincode/samples/deployment/test-network/fabric-samples/test-network/organizations:/fabric/organizations + - ../fabric-private-chaincode/samples/deployment/test-network/fabric-samples/test-network/organizations:/fabric/organizations logging: options: max-size: 50m diff --git a/chaincode/go.mod b/chaincode/go.mod index a4c84dd..6605494 100644 --- a/chaincode/go.mod +++ b/chaincode/go.mod @@ -6,7 +6,7 @@ go 1.21 require ( github.com/cucumber/godog v0.12.6 - github.com/hyperledger-labs/cc-tools v1.0.0 + github.com/hyperledger-labs/cc-tools v1.0.2 github.com/hyperledger/fabric-chaincode-go v0.0.0-20210603161043-af0e3898842a github.com/hyperledger/fabric-protos-go v0.0.0-20210528200356-82833ecdac31 )