Skip to content
Snippets Groups Projects
Unverified Commit e056d802 authored by Luca Moser's avatar Luca Moser Committed by GitHub
Browse files

Adds default config parameters (#589)

* adds default entry node

* updates default cfg values
parent bc67fedc
No related branches found
No related tags found
No related merge requests found
{ {
"analysis": { "analysis": {
"client": { "client": {
"serverAddress": "node1.goshimmer.dev:188" "serverAddress": "ressims.iota.cafe:21888"
}, },
"server": { "server": {
"bindAddress": "0.0.0.0:16178" "bindAddress": "0.0.0.0:16178"
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
}, },
"autopeering": { "autopeering": {
"entryNodes": [ "entryNodes": [
"4JXbv7u61TPfDkN63KK2UxDquuKsewZBMnBujTvXnmHK@35.246.104.243:14626" "2PV5487xMw5rasGBXXWeqSi4hLz7r19YBt8Y1TGAsQbj@ressims.iota.cafe:15626"
], ],
"port": 14626 "port": 14626
}, },
......
...@@ -27,7 +27,7 @@ const ( ...@@ -27,7 +27,7 @@ const (
) )
func init() { 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 ( var (
......
...@@ -10,5 +10,5 @@ const ( ...@@ -10,5 +10,5 @@ const (
) )
func init() { 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")
} }
...@@ -58,7 +58,7 @@ func Plugin() *node.Plugin { ...@@ -58,7 +58,7 @@ func Plugin() *node.Plugin {
} }
func init() { 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) { func configure(plugin *node.Plugin) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment