Hyperledger fabric Hyperledger结构:创建channelconfig捆绑包时出错

Hyperledger fabric Hyperledger结构:创建channelconfig捆绑包时出错,hyperledger-fabric,hyperledger,Hyperledger Fabric,Hyperledger,我正在尝试使用Hyperledger结构运行多对等区块链网络。我的网络有三个节点。 以下是configtx.yaml文件: Profiles: ComposerOrdererGenesis: Orderer: <<: *OrdererDefaults Organizations: - *OrdererOrg Consortiums: ComposerConsortium:

我正在尝试使用Hyperledger结构运行多对等区块链网络。我的网络有三个节点。 以下是configtx.yaml文件:

Profiles:

ComposerOrdererGenesis:
    Orderer:
        <<: *OrdererDefaults
        Organizations:
            - *OrdererOrg
    Consortiums:
        ComposerConsortium:
            Organizations:
                - *ManufacturerOrg
                - *CustomerOrg
                - *RegulatorOrg
ComposerChannel:
    Consortium: ComposerConsortium
    Application:
        <<: *ApplicationDefaults
        Organizations:
            - *ManufacturerOrg
            - *CustomerOrg
            - *RegulatorOrg


Organizations:


- &OrdererOrg

    Name: OrdererOrg
    ID: OrdererMSP


    MSPDir: crypto-config/ordererOrganizations/Orderer-org/msp



- &ManufacturerOrg

    Name: ManufacturerOrg


    ID: ManufacturerOrgMSP

    MSPDir: crypto-config/peerOrganizations/Manufacturer-org/msp

    # turn off security for the peer
    #AdminPrincipal: Role.MEMBER

    AnchorPeers:

        - Host: manufacturer-peer
          Port: 7051
- &CustomerOrg

    Name: CustomerOrg


    ID: CustomerOrgMSP

    MSPDir: crypto-config/peerOrganizations/Customer-org/msp

    # turn off security for the peer
    AdminPrincipal: Role.MEMBER

    AnchorPeers:

        - Host: customer-peer
          Port: 7051
- &RegulatorOrg

    Name: RegulatorOrg


    ID: RegulatorOrgMSP

    MSPDir: crypto-config/peerOrganizations/Regulator-org/msp

    # turn off security for the peer
    AdminPrincipal: Role.MEMBER

    AnchorPeers:

        - Host: regulator-peer
          Port: 7051


Orderer: &OrdererDefaults

# Orderer Type: The orderer implementation to start
# Available types are "solo" and "kafka"
OrdererType: solo

Addresses:
    - orderer.example.com:7050


BatchTimeout: 2s


BatchSize:

    MaxMessageCount: 10


    AbsoluteMaxBytes: 98 MB


    PreferredMaxBytes: 512 KB


Organizations:


Application: &ApplicationDefaults


Organizations:
配置文件:
遗传作用:
订购方:

频道ID只能包含小写字母数字字符和破折号。

能否检查yaml文件中是否存在任何选项卡。它不支持标签,而是使用空间向前或向后移动,这是一个很好的捕获!我会查一查。你有什么解决办法吗?