diff --git a/netdeploy/remote/nodecfg/nodeConfigurator.go b/netdeploy/remote/nodecfg/nodeConfigurator.go index 8e6bea9718..1de017f10d 100644 --- a/netdeploy/remote/nodecfg/nodeConfigurator.go +++ b/netdeploy/remote/nodecfg/nodeConfigurator.go @@ -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" } diff --git a/network/p2p/testing/httpNode.go b/network/p2p/testing/httpNode.go index f73b26999f..ea84144180 100644 --- a/network/p2p/testing/httpNode.go +++ b/network/p2p/testing/httpNode.go @@ -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)