Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FAB-17504] add Organizations.<Org>.OrdererEndpoints and remove Orderer.Addresses #125

Merged
merged 1 commit into from
Mar 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions first-network/configtx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ Organizations:
Type: Signature
Rule: "OR('OrdererMSP.admin')"

OrdererEndpoints:
- orderer.example.com:7050

- &Org1
# DefaultOrg defines the organization which is used in the sampleconfig
# of the fabric.git development environment
Expand Down Expand Up @@ -215,9 +218,6 @@ Orderer: &OrdererDefaults
# Orderer Type: The orderer implementation to start
OrdererType: etcdraft

Addresses:
- orderer.example.com:7050

# Batch Timeout: The amount of time to wait before creating a batch
BatchTimeout: 2s

Expand Down
6 changes: 3 additions & 3 deletions interest_rate_swaps/network/configtx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ Organizations:
Type: Signature
Rule: "OR('orderer.admin')"

OrdererEndpoints:
- irs-orderer:7050

- &partya
# DefaultOrg defines the organization which is used in the sampleconfig
# of the fabric.git development environment
Expand Down Expand Up @@ -324,9 +327,6 @@ Orderer: &OrdererDefaults
# Available types are "solo" and "kafka"
OrdererType: solo

Addresses:
- irs-orderer:7050

# Batch Timeout: The amount of time to wait before creating a batch
BatchTimeout: 2s

Expand Down
5 changes: 3 additions & 2 deletions test-network/configtx/configtx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ Organizations:
Type: Signature
Rule: "OR('OrdererMSP.admin')"

OrdererEndpoints:
- orderer.example.com:7050

- &Org1
# DefaultOrg defines the organization which is used in the sampleconfig
# of the fabric.git development environment
Expand Down Expand Up @@ -222,8 +225,6 @@ Orderer: &OrdererDefaults
Port: 7050
ClientTLSCert: ../organizations/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt
ServerTLSCert: ../organizations/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt
Addresses:
- orderer.example.com:7050

# Batch Timeout: The amount of time to wait before creating a batch
BatchTimeout: 2s
Expand Down