diff --git a/config.default.json b/config.default.json index da3c2d6ffbb6f1261acb8ffbad58994ec7fb4102..5f172cac790624ecfbedbd7aeb46c5d84ddcde82 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 0761a9a945f00c9c867c7434e9e0c7ecbb91a279..16d2401cd87dcc74b244ab51cd31b0a935e04f02 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 01022ef352e2ae927b2841f399dd20c8a366607f..76ec6a7f8a60871b776fe56ac5bbd5e7e47233d2 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 35e8e8fc481accb7329a9bd59e6f8da0443ec9dc..a7018f70d305b617cf569ea5e70c5c1700fbd692 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) {