From e056d8024db9384b628ab254091752e170340027 Mon Sep 17 00:00:00 2001
From: Luca Moser <moser.luca@gmail.com>
Date: Tue, 30 Jun 2020 13:10:00 +0200
Subject: [PATCH] Adds default config parameters (#589)

* adds default entry node

* updates default cfg values
---
 config.default.json               | 4 ++--
 plugins/analysis/client/plugin.go | 2 +-
 plugins/autopeering/parameters.go | 2 +-
 plugins/remotelog/plugin.go       | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/config.default.json b/config.default.json
index da3c2d6f..5f172cac 100644
--- a/config.default.json
+++ b/config.default.json
@@ -1,7 +1,7 @@
 {
   "analysis": {
     "client": {
-      "serverAddress": "node1.goshimmer.dev:188"
+      "serverAddress": "ressims.iota.cafe:21888"
     },
     "server": {
       "bindAddress": "0.0.0.0:16178"
@@ -13,7 +13,7 @@
   },
   "autopeering": {
     "entryNodes": [
-      "4JXbv7u61TPfDkN63KK2UxDquuKsewZBMnBujTvXnmHK@35.246.104.243:14626"
+      "2PV5487xMw5rasGBXXWeqSi4hLz7r19YBt8Y1TGAsQbj@ressims.iota.cafe:15626"
     ],
     "port": 14626
   },
diff --git a/plugins/analysis/client/plugin.go b/plugins/analysis/client/plugin.go
index 0761a9a9..16d2401c 100644
--- a/plugins/analysis/client/plugin.go
+++ b/plugins/analysis/client/plugin.go
@@ -27,7 +27,7 @@ const (
 )
 
 func init() {
-	flag.String(CfgServerAddress, "ressims.iota.cafe:188", "tcp server for collecting analysis information")
+	flag.String(CfgServerAddress, "ressims.iota.cafe:21888", "tcp server for collecting analysis information")
 }
 
 var (
diff --git a/plugins/autopeering/parameters.go b/plugins/autopeering/parameters.go
index 01022ef3..76ec6a7f 100644
--- a/plugins/autopeering/parameters.go
+++ b/plugins/autopeering/parameters.go
@@ -10,5 +10,5 @@ const (
 )
 
 func init() {
-	flag.StringSlice(CfgEntryNodes, []string{"V8LYtWWcPYYDTTXLeIEFjJEuWlsjDiI0+Pq/Cx9ai6g=@116.202.49.178:14626"}, "list of trusted entry nodes for auto peering")
+	flag.StringSlice(CfgEntryNodes, []string{"2PV5487xMw5rasGBXXWeqSi4hLz7r19YBt8Y1TGAsQbj@ressims.iota.cafe:15626"}, "list of trusted entry nodes for auto peering")
 }
diff --git a/plugins/remotelog/plugin.go b/plugins/remotelog/plugin.go
index 35e8e8fc..a7018f70 100644
--- a/plugins/remotelog/plugin.go
+++ b/plugins/remotelog/plugin.go
@@ -58,7 +58,7 @@ func Plugin() *node.Plugin {
 }
 
 func init() {
-	flag.String(CfgLoggerRemotelogServerAddress, "remotelog.goshimmer.iota.cafe:5213", "RemoteLog server address")
+	flag.String(CfgLoggerRemotelogServerAddress, "ressims.iota.cafe:5213", "RemoteLog server address")
 }
 
 func configure(plugin *node.Plugin) {
-- 
GitLab