fabric-samples/test-network/addOrg3/configtx.yaml
Danny Cao 2a283d3275 [FAB-17303] Update sample configtx.yamls with new
PrivateDataImplicitCollection field

Signed-off-by: Danny Cao <dcao@us.ibm.com>
Change-Id: I5d2c23b882c83f7a4ab529336145bb7567c6b296
2020-01-23 14:13:54 -05:00

51 lines
1.7 KiB
YAML

# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
---
################################################################################
#
# Section: Organizations
#
# - This section defines the different organizational identities which will
# be referenced later in the configuration.
#
################################################################################
Organizations:
- &Org3
# DefaultOrg defines the organization which is used in the sampleconfig
# of the fabric.git development environment
Name: Org3MSP
# ID to load the MSP definition as
ID: Org3MSP
MSPDir: ../organizations/peerOrganizations/org3.example.com/msp
Policies:
Readers:
Type: Signature
Rule: "OR('Org3MSP.admin', 'Org3MSP.peer', 'Org3MSP.client')"
Writers:
Type: Signature
Rule: "OR('Org3MSP.admin', 'Org3MSP.client')"
Admins:
Type: Signature
Rule: "OR('Org3MSP.admin')"
AnchorPeers:
# AnchorPeers defines the location of peers which can be used
# for cross org gossip communication. Note, this value is only
# encoded in the genesis block in the Application section context
- Host: peer0.org3.example.com
Port: 11051
# PrivateDataImplicitCollection stores the configuration for this org's implicit
# collection.
PrivateDataImplicitCollection:
RequiredPeerCount: 0
MaxPeerCount: 1
BlockToLive: 0
MemberOnlyRead: true
MemberOnlyWrite: true