Skip to content

Commit

Permalink
Fixed build errors
Browse files Browse the repository at this point in the history
Signed-off-by: VRamakrishna <vramakr2@in.ibm.com>
  • Loading branch information
VRamakrishna committed Jun 13, 2024
1 parent cdc492e commit ea63b8c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions integration/fabric/weaver/relay/topology.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ func Topology() []api.Topology {
// Define weaver relay server topology. One relay server per Fabric network
wTopology := weaver.NewTopology()
wTopology.AddRelayServer(f1Topology, "Org1").AddFabricNetwork(f2Topology)
wTopology.AddIINAgents(f1Topology, "Org1")
wTopology.AddIINAgents(f1Topology)
wTopology.AddRelayServer(f2Topology, "Org3").AddFabricNetwork(f1Topology)
wTopology.AddIINAgents(f2Topology, "Org3")
wTopology.AddIINAgents(f2Topology)

// Define an FSC topology with 2 FCS nodes.
fscTopology := fsc.NewTopology()
Expand Down
2 changes: 1 addition & 1 deletion integration/nwo/cmd/cryptogen/ca/ca.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ func (ca *CA) SignCertificate(baseDir, name string, orgUnits, alternateNames []s
"hf.Affiliation": ca.OrganizationalUnit,
"hf.EnrollmentID": name,
"hf.Type": hfType,
"relay": relay,
"relay": "false",
}
// TODO: remove these by introducing custom attributes
// Note: Cacti-Weaver logic just depends on particular attributes
Expand Down
1 change: 1 addition & 0 deletions integration/nwo/fabric/platform.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ func (p *Platform) PostRun(load bool) {
)
res := p.InvokeChaincode(
chaincode,
"User1",
invocation.FunctionName,
invocation.Args...,
)
Expand Down
1 change: 1 addition & 0 deletions integration/nwo/weaver/platform.go
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,7 @@ func (p *Platform) generateInteropChaincodeAccessControlFile(destinationRelay *R
}
}

// TODO: RAMA - Update this code to generate and write the local membership structure to file
func (p *Platform) generateInteropChaincodeMembershipFile(relay *RelayServer) {
fabric := p.Fabric(relay)

Expand Down

0 comments on commit ea63b8c

Please sign in to comment.