Changed hard-coded port to Tendermint's value in the default config

This commit is contained in:
Sergio Mena
2022-05-27 15:34:33 +02:00
parent f83db7ff8c
commit 8db919637b
+1 -1
View File
@@ -169,7 +169,7 @@ func prepareClientsIps(ips []string) []*rpchttp.HTTP {
clients := make([]*rpchttp.HTTP, 0, len(ips))
for _, ip := range ips {
client, err := e2e.NewClient(ip, 6000) // Port is hard-coded for the moment
client, err := e2e.NewClient(ip, 26657) // Port is hard-coded for the moment
if err != nil {
continue
}