mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
[FAB-8386] eyfn fails to execute invoke on org3
org3 peer role is not enabled in org3-artifacts/org3-crypto.yaml which causes failure in executing the transaction on org3. adding the following configuration fixes the issue "EnableNodeOUs: true" Change-Id: Id345583a7f5a1f8fb970c8e6113a094de82b6358 Signed-off-by: ratnakar <asara.ratnakar@gmail.com>
This commit is contained in:
parent
24f35c1493
commit
41e144f327
2 changed files with 2 additions and 1 deletions
|
|
@ -12,6 +12,7 @@ PeerOrgs:
|
|||
# ---------------------------------------------------------------------------
|
||||
- Name: Org3
|
||||
Domain: org3.example.com
|
||||
EnableNodeOUs: true
|
||||
Template:
|
||||
Count: 2
|
||||
Users:
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ echo "Channel name : "$CHANNEL_NAME
|
|||
. scripts/utils.sh
|
||||
|
||||
createChannel() {
|
||||
setGlobals 0 0
|
||||
setGlobals 0 1
|
||||
|
||||
if [ -z "$CORE_PEER_TLS_ENABLED" -o "$CORE_PEER_TLS_ENABLED" = "false" ]; then
|
||||
peer channel create -o orderer.example.com:7050 -c $CHANNEL_NAME -f ./channel-artifacts/channel.tx >&log.txt
|
||||
|
|
|
|||
Loading…
Reference in a new issue