Skip to content

Commit

Permalink
Fix fabric genesis issue
Browse files Browse the repository at this point in the history
Signed-off-by: Nicko Guyer <[email protected]>
  • Loading branch information
nguyer committed Feb 28, 2024
1 parent aa46145 commit c71842f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/blockchain/fabric/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package fabric

var FabricToolsImageName = "hyperledger/fabric-tools:2.5"
var FabricToolsImageName = "hyperledger/fabric-tools:2.5.6"
var FabricCAImageName = "hyperledger/fabric-ca:1.5"
var FabricOrdererImageName = "hyperledger/fabric-orderer:2.5"
var FabricPeerImageName = "hyperledger/fabric-peer:2.5"
2 changes: 1 addition & 1 deletion internal/blockchain/fabric/fabric_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func (p *FabricProvider) FirstTimeSetup() error {
"--platform", getDockerPlatform(),
"--rm",
"-v", fmt.Sprintf("%s:/etc/firefly", volumeName),
"-v", fmt.Sprintf("%s:/var/hyperledger/fabric/config/configtx.yaml", path.Join(blockchainDirectory, "configtx.yaml")),
"-v", fmt.Sprintf("%s:/etc/hyperledger/fabric/configtx.yaml", path.Join(blockchainDirectory, "configtx.yaml")),
FabricToolsImageName,
"configtxgen",
"-outputBlock", "/etc/firefly/firefly.block",
Expand Down

0 comments on commit c71842f

Please sign in to comment.