mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-22 01:25:10 +00:00
chore: minor simplification of configtx yaml (#459)
We dont need << as we are not adding or overwriting any values. Signed-off-by: ankitm123 <ankitmohapatra123@gmail.com>
This commit is contained in:
parent
d5d8ff1539
commit
f38845ecab
1 changed files with 2 additions and 5 deletions
|
|
@ -202,7 +202,6 @@ Orderer: &OrdererDefaults
|
||||||
|
|
||||||
# Orderer Type: The orderer implementation to start
|
# Orderer Type: The orderer implementation to start
|
||||||
OrdererType: etcdraft
|
OrdererType: etcdraft
|
||||||
|
|
||||||
# Addresses used to be the list of orderer addresses that clients and peers
|
# Addresses used to be the list of orderer addresses that clients and peers
|
||||||
# could connect to. However, this does not allow clients to associate orderer
|
# could connect to. However, this does not allow clients to associate orderer
|
||||||
# addresses and orderer organizations which can be useful for things such
|
# addresses and orderer organizations which can be useful for things such
|
||||||
|
|
@ -307,12 +306,10 @@ Profiles:
|
||||||
<<: *OrdererDefaults
|
<<: *OrdererDefaults
|
||||||
Organizations:
|
Organizations:
|
||||||
- *OrdererOrg
|
- *OrdererOrg
|
||||||
Capabilities:
|
Capabilities: *OrdererCapabilities
|
||||||
<<: *OrdererCapabilities
|
|
||||||
Application:
|
Application:
|
||||||
<<: *ApplicationDefaults
|
<<: *ApplicationDefaults
|
||||||
Organizations:
|
Organizations:
|
||||||
- *Org1
|
- *Org1
|
||||||
- *Org2
|
- *Org2
|
||||||
Capabilities:
|
Capabilities: *ApplicationCapabilities
|
||||||
<<: *ApplicationCapabilities
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue