Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion netdeploy/remote/nodecfg/nodeConfigurator.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ func (nc *nodeConfigurator) prepareNodeDirs(configs []remote.NodeConfig, rootCon
return
}

// getHostName creates a DNS name for a host
// getNetworkHostName creates a DNS name for a host
func (nc *nodeConfigurator) getNetworkHostName() string {
return nc.config.Name + "." + string(nc.genesisData.Network) + ".algodev.network"
}
Expand Down
2 changes: 1 addition & 1 deletion network/p2p/testing/httpNode.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func (p httpPeer) GetAddress() string {
return mas[0].String()
}

// GetAddress implements HTTPPeer interface and returns the http client for a peer
// GetHTTPClient implements HTTPPeer interface and returns the http client for a peer
func (p httpPeer) GetHTTPClient() *http.Client {
c, err := p2p.MakeTestHTTPClient(&p.addrInfo)
require.NoError(p.tb, err)
Expand Down