From f38845ecab47c219d409e6edccb3d9f942b58368 Mon Sep 17 00:00:00 2001 From: ankitm123 Date: Mon, 12 Jul 2021 11:42:23 -0400 Subject: [PATCH] chore: minor simplification of configtx yaml (#459) We dont need << as we are not adding or overwriting any values. Signed-off-by: ankitm123 --- test-network/configtx/configtx.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/test-network/configtx/configtx.yaml b/test-network/configtx/configtx.yaml index 8d7e48e6..48bd1d75 100644 --- a/test-network/configtx/configtx.yaml +++ b/test-network/configtx/configtx.yaml @@ -202,7 +202,6 @@ Orderer: &OrdererDefaults # Orderer Type: The orderer implementation to start OrdererType: etcdraft - # 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 # addresses and orderer organizations which can be useful for things such @@ -307,12 +306,10 @@ Profiles: <<: *OrdererDefaults Organizations: - *OrdererOrg - Capabilities: - <<: *OrdererCapabilities + Capabilities: *OrdererCapabilities Application: <<: *ApplicationDefaults Organizations: - *Org1 - *Org2 - Capabilities: - <<: *ApplicationCapabilities \ No newline at end of file + Capabilities: *ApplicationCapabilities