mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
* Remove Org3cli from test-network FAB-18381 Signed-off-by: Will Lahti <wtlahti@us.ibm.com> * Remove configtx.yaml anchor peers from test-network These values were only used by configtxgen's --outputAnchorPeerUpdate function and should not be set in a channel genesis block This is because a peer cannot be an anchor peer for a channel until it has joined that channel and it can't join a channel until the genesis block has been created. FAB-18381 Signed-off-by: Will Lahti <wtlahti@us.ibm.com>
38 lines
1.2 KiB
YAML
38 lines
1.2 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')"
|
|
Endorsement:
|
|
Type: Signature
|
|
Rule: "OR('Org3MSP.peer')"
|