OSDN Git Service

Peer add announces new block message num limit
[bytom/vapor.git] / config / toml.go
index cbb207a..8c1d570 100644 (file)
@@ -23,19 +23,20 @@ var defaultConfigTmpl = `# This is a TOML config file.
 # For more information, see https://github.com/toml-lang/toml
 fast_sync = true
 db_backend = "leveldb"
-api_addr = "0.0.0.0:8888"
+api_addr = "0.0.0.0:9889"
+moniker = ""
 `
 
 var mainNetConfigTmpl = `chain_id = "mainnet"
 [p2p]
-laddr = "tcp://0.0.0.0:56657"
-seeds = "45.79.213.28:56657,198.74.61.131:56657,212.111.41.245:56657"
+laddr = "tcp://0.0.0.0:56656"
+seeds = "47.103.79.68:56656,47.103.13.86:56656,47.102.193.119:56656,47.103.17.22:56656"
 `
 
-var testNetConfigTmpl = `chain_id = "wisdom"
+var testNetConfigTmpl = `chain_id = "testnet"
 [p2p]
-laddr = "tcp://0.0.0.0:56656"
-seeds = "52.83.107.224:56656,52.83.107.224:56656,52.83.251.197:56656"
+laddr = "tcp://0.0.0.0:56657"
+seeds = "52.82.28.25:56657,52.82.31.195:56657,52.82.31.247:56657"
 `
 
 var soloNetConfigTmpl = `chain_id = "solonet"