From 5c28058d4af34fec99d94fa89aab3872157cbfe1 Mon Sep 17 00:00:00 2001 From: carla Date: Thu, 5 Mar 2020 17:47:05 +0200 Subject: [PATCH] config: update default port to 8465 Update default port to 8465 which has no commonly used TCP application to avoid collisions. --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index 130a9cf..9b0f348 100644 --- a/config.go +++ b/config.go @@ -15,7 +15,7 @@ const ( defaultNetwork = "mainnet" defaultMinimumMonitor = time.Hour * 24 * 7 * 4 // four weeks in hours defaultDebugLevel = "info" - defaultRPCListen = "localhost:8419" + defaultRPCListen = "localhost:8465" ) type config struct {