Skip to content

Commit

Permalink
fix startNodes
Browse files Browse the repository at this point in the history
  • Loading branch information
algorandskiy committed Jul 26, 2023
1 parent 3ba638c commit b73db76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netdeploy/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ func (n Network) GetPeerAddresses(binDir string) []string {
}

func (n Network) startNodes(binDir string, relayNameToAddress map[string]string, redirectOutput bool) error {
allRelaysAddresses := strings.Join(maps.Keys(relayNameToAddress), ";")
allRelaysAddresses := strings.Join(maps.Values(relayNameToAddress), ";")

nodeConfigToEntry := make(map[string]remote.NodeConfigGoal, len(n.cfg.Template.Nodes))
for _, n := range n.cfg.Template.Nodes {
Expand Down

0 comments on commit b73db76

Please sign in to comment.