hyperledger-labs / fablo

Fablo is a simple tool to generate the Hyperledger Fabric blockchain network and run it on Docker. It supports RAFT and solo consensus protocols, multiple organizations and channels, chaincode installation and upgrade.
Apache License 2.0
195 stars 72 forks source link

When Fabric version is 2.5, use V2_5 capabilities #452

Closed dzikowski closed 3 months ago

dzikowski commented 5 months ago

When Fabric version is 2.5, use V2_5 capabilities

Requires setting application capability to V2_5 in channel configuration. Requires adding object similar to:

interface CapabilitiesV2 {
  application: "V2_0";
  channel: "V2_0";
  orderer: "V2_0";
  isV2: true;
}

Then use it by default for Fabric 2.5 and higher