Jim Green
Jim Green

Reputation: 1118

what is the field "Name" useful in crypto-config.yaml

from file crypto-config.yaml, some snippet is as following:

 OrdererOrgs:  
  # ---------------------------------------------------------------------------  
  # Orderer  
  # ---------------------------------------------------------------------------  
  - Name: OrdererAA  
    Domain: example.comwwww  
    # ---------------------------------------------------------------------------
    # "Specs" - See PeerOrgs below for complete description
    # ---------------------------------------------------------------------------  
    Specs:
      - Hostname: ordererCC

When I execute

cryptogen generate --config=./crypto-config.yaml

It generate msp files, but I do not find something related to field Name? What is field Name useful?

Upvotes: 0

Views: 190

Answers (1)

Gari Singh
Gari Singh

Reputation: 12013

It's simply a convenience key in the yaml file. It is not used in the generated output

Upvotes: 1

Related Questions