From 087501673fc8dee17db31889853cf5b7acc3b2ab Mon Sep 17 00:00:00 2001
From: josh <josh@elixxir.io>
Date: Tue, 8 Sep 2020 14:36:24 -0700
Subject: [PATCH] Increase increment

---
 node/handler.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/node/handler.go b/node/handler.go
index b60129a5..c301466d 100644
--- a/node/handler.go
+++ b/node/handler.go
@@ -59,9 +59,9 @@ func StartNode(id *id.ID, localServer string, handler Handler,
 			return
 		}
 
-		newPort = newPort + 1
+		newPort = newPort + 10
 		interconnectPort := strconv.Itoa(newPort)
-		jww.INFO.Printf("Starting interconnect on port: %v", newPort)
+		jww.INFO.Printf("Starting interconnect on port: %v", interconnectPort)
 		interconnect.StartCMixInterconnect(id, interconnectPort, handler, certPEMblock, keyPEMblock)
 	}()
 
-- 
GitLab