Browse Source

change default port for tau and faucetd

ghassmo 4 years ago
parent
commit
89e756438b

+ 2 - 2
bin/faucetd/faucetd_config.toml

@@ -22,10 +22,10 @@
 #rpc_listen = "tcp://127.0.0.1:8340"
 
 # P2P accept address for the syncing protocol
-#sync_p2p_accept = "tls://127.0.0.1:8342"
+#sync_p2p_accept = "tls://127.0.0.1:9342"
 
 # P2P external address for the syncing protocol
-#sync_p2p_external = "tls://127.0.0.1:8342"
+#sync_p2p_external = "tls://127.0.0.1:9342"
 
 # Connection slots for the syncing protocol
 #sync_slots = 8

+ 1 - 1
bin/faucetd/src/main.rs

@@ -73,7 +73,7 @@ struct Args {
     /// Path to blockchain database
     database: String,
 
-    #[structopt(long, default_value = "tcp://127.0.0.1:8340")]
+    #[structopt(long, default_value = "tcp://127.0.0.1:9340")]
     /// JSON-RPC listen URL
     rpc_listen: Url,
 

+ 1 - 1
bin/tau/tau-cli/src/main.rs

@@ -28,7 +28,7 @@ struct Args {
     /// Increase verbosity (-vvv supported)
     verbose: u8,
 
-    #[clap(short, long, default_value = "tcp://127.0.0.1:11055")]
+    #[clap(short, long, default_value = "tcp://127.0.0.1:12055")]
     /// taud JSON-RPC endpoint
     endpoint: Url,
 

+ 1 - 1
bin/tau/taud/src/settings.rs

@@ -17,7 +17,7 @@ pub struct Args {
     #[structopt(long)]
     pub config: Option<String>,
     /// JSON-RPC listen URL
-    #[structopt(long = "rpc", default_value = "tcp://127.0.0.1:11055")]
+    #[structopt(long = "rpc", default_value = "tcp://127.0.0.1:12055")]
     pub rpc_listen: Url,
     /// Sets Datastore Path
     #[structopt(long, default_value = "~/.config/darkfi/tau")]

+ 5 - 5
bin/tau/taud_config.toml

@@ -1,5 +1,5 @@
 ## JSON-RPC listen URL
-#rpc_listen="tcp://127.0.0.1:11055"
+#rpc_listen="tcp://127.0.0.1:12055"
 
 ## Sets Datastore Path
 #datastore="~/.config/darkfi/tau"
@@ -10,19 +10,19 @@
 ## Raft net settings
 [net]
 ## P2P accept address
-#inbound="tcp://127.0.0.1:11002" 
+#inbound="tcp://127.0.0.1:12002" 
 
 ## Connection slots
 #outbound_connections=0 
 
 ## P2P external address
-#external_addr="tls://127.0.0.1:11002"
+#external_addr="tls://127.0.0.1:12002"
 
 ## Peers to connect to
-#peers=["tls://127.0.0.1:11003"]
+#peers=["tls://127.0.0.1:12003"]
 
 ## Seed nodes to connect to 
-#seeds=["tls://127.0.0.1:11001"]
+#seeds=["tls://127.0.0.1:12001"]
 
 ## these are the default configuration for the p2p network
 #manual_attempt_limit=0