remove printf

This commit is contained in:
Sergio Mena
2022-05-25 19:29:40 +02:00
parent fdf3449fff
commit f50a32aa65
2 changed files with 0 additions and 2 deletions

View File

@@ -463,7 +463,6 @@ func (n Node) AddressRPC() string {
}
func NewClient(ip string, port uint32) (*rpchttp.HTTP, error) {
fmt.Printf("[NewClient] http://%v:%v\n", ip, port)
return rpchttp.New(fmt.Sprintf("http://%v:%v", ip, port))
}

View File

@@ -188,7 +188,6 @@ func loadProcess(ctx context.Context, testnet *e2e.Testnet, ips []string, chTx <
var clients []*rpchttp.HTTP
if testnet == nil {
fmt.Printf("[loadProcess] %v\n", ips)
clients = prepareClientsIp(ips)
} else {
clients = prepareClients(testnet)