Sfoglia il codice sorgente

localnet/darkfid: Revert to TCP network transport.

Luther Blissett 3 anni fa
parent
commit
e2b986a0cb

+ 7 - 7
contrib/localnet/darkfid/darkfid0.toml

@@ -19,22 +19,22 @@ wallet_pass = "changeme"
 database = "darkfid0/blockchain"
 
 # JSON-RPC listen url
-rpc_listen = "tls://127.0.0.1:8340"
+rpc_listen = "tcp://127.0.0.1:8340"
 
 # Participate in the consensus protocol
 consensus = true
 
 # P2P accept addresses for the consensus protocol
-consensus_p2p_accept = ["tls://127.0.0.1:8341"]
+consensus_p2p_accept = ["tcp://127.0.0.1:8341"]
 
 # P2P external addresses for the consensus protocol
-consensus_p2p_external = ["tls://127.0.0.1:8341"]
+consensus_p2p_external = ["tcp://127.0.0.1:8341"]
 
 # Connection slots for the consensus protocol
 #consensus_slots = 8
 
 # Connection slots for the consensus protocol
-consensus_p2p_seed = ["tls://127.0.0.1:33033"]
+consensus_p2p_seed = ["tcp://127.0.0.1:33033"]
 
 # Peers to connect to for the consensus protocol
 #consensus_p2p_peer = []
@@ -44,16 +44,16 @@ consensus_p2p_seed = ["tls://127.0.0.1:33033"]
 #consensus_p2p_transports = ["tls", "tcp"]
 
 # P2P accept addresses for the syncing protocol
-sync_p2p_accept = ["tls://127.0.0.1:8342"]
+sync_p2p_accept = ["tcp://127.0.0.1:8342"]
 
 # P2P external addresses for the syncing protocol
-sync_p2p_external = ["tls://127.0.0.1:8342"]
+sync_p2p_external = ["tcp://127.0.0.1:8342"]
 
 # Connection slots for the syncing protocol
 #sync_slots = 8
 
 # Seed nodes to connect to for the syncing protocol
-sync_p2p_seed = ["tls://127.0.0.1:33032"]
+sync_p2p_seed = ["tcp://127.0.0.1:33032"]
 
 # Peers to connect to for the syncing protocol
 #sync_p2p_peer = []

+ 8 - 8
contrib/localnet/darkfid/darkfid1.toml

@@ -19,25 +19,25 @@ wallet_pass = "changeme"
 database = "darkfid1/blockchain"
 
 # JSON-RPC listen url
-rpc_listen = "tls://127.0.0.1:8440"
+rpc_listen = "tcp://127.0.0.1:8440"
 
 # Participate in the consensus protocol
 consensus = true
 
 # P2P accept addresses for the consensus protocol
-consensus_p2p_accept = ["tls://127.0.0.1:8441"]
+consensus_p2p_accept = ["tcp://127.0.0.1:8441"]
 
 # P2P external addresses for the consensus protocol
-consensus_p2p_external = ["tls://127.0.0.1:8441"]
+consensus_p2p_external = ["tcp://127.0.0.1:8441"]
 
 # Connection slots for the consensus protocol
 #consensus_slots = 8
 
 # Connection slots for the consensus protocol
-consensus_p2p_seed = ["tls://127.0.0.1:33033"]
+consensus_p2p_seed = ["tcp://127.0.0.1:33033"]
 
 # Seed nodes JSON-RPC listen URL for clock synchronization
-consensus_seed_rpc = ["tls://127.0.0.1:8340"]
+consensus_seed_rpc = ["tcp://127.0.0.1:8340"]
 
 # Peers to connect to for the consensus protocol
 #consensus_p2p_peer = []
@@ -49,16 +49,16 @@ consensus_seed_rpc = ["tls://127.0.0.1:8340"]
 #consensus_p2p_transports = ["tls", "tcp"]
 
 # P2P accept addresses for the syncing protocol
-sync_p2p_accept = ["tls://127.0.0.1:8442"]
+sync_p2p_accept = ["tcp://127.0.0.1:8442"]
 
 # P2P external addresses for the syncing protocol
-sync_p2p_external = ["tls://127.0.0.1:8442"]
+sync_p2p_external = ["tcp://127.0.0.1:8442"]
 
 # Connection slots for the syncing protocol
 #sync_slots = 8
 
 # Seed nodes to connect to for the syncing protocol
-sync_p2p_seed = ["tls://127.0.0.1:33032"]
+sync_p2p_seed = ["tcp://127.0.0.1:33032"]
 
 # Peers to connect to for the syncing protocol
 #sync_p2p_peer = []

+ 6 - 6
contrib/localnet/darkfid/darkfid2.toml

@@ -25,16 +25,16 @@ rpc_listen = "tcp://127.0.0.1:8540"
 consensus = false
 
 # P2P accept addresses for the consensus protocol
-#consensus_p2p_accept = ["tls://127.0.0.1:8541"]
+#consensus_p2p_accept = ["tcp://127.0.0.1:8541"]
 
 # P2P external addressesfor the consensus protocol
-#consensus_p2p_external = ["tls://127.0.0.1:8541"]
+#consensus_p2p_external = ["tcp://127.0.0.1:8541"]
 
 # Connection slots for the consensus protocol
 #consensus_slots = 8
 
 # Connection slots for the consensus protocol
-#consensus_p2p_seed = ["tls://127.0.0.1:33033"]
+#consensus_p2p_seed = ["tcp://127.0.0.1:33033"]
 
 # Peers to connect to for the consensus protocol
 #consensus_p2p_peer = []
@@ -43,16 +43,16 @@ consensus = false
 #consensus_p2p_transports = ["tls", "tcp"]
 
 # P2P accept addresses for the syncing protocol
-sync_p2p_accept = ["tls://127.0.0.1:8542"]
+sync_p2p_accept = ["tcp://127.0.0.1:8542"]
 
 # P2P external addresses for the syncing protocol
-sync_p2p_external = ["tls://127.0.0.1:8542"]
+sync_p2p_external = ["tcp://127.0.0.1:8542"]
 
 # Connection slots for the syncing protocol
 #sync_slots = 8
 
 # Seed nodes to connect to for the syncing protocol
-sync_p2p_seed = ["tls://127.0.0.1:33032"]
+sync_p2p_seed = ["tcp://127.0.0.1:33032"]
 
 # Peers to connect to for the syncing protocol
 #sync_p2p_peer = []

+ 3 - 3
contrib/localnet/darkfid/faucetd.toml

@@ -19,13 +19,13 @@ wallet_pass = "changeme"
 database = "faucetd/blockchain"
 
 # JSON-RPC listen URL
-rpc_listen = "tls://127.0.0.1:8640"
+rpc_listen = "tcp://127.0.0.1:8640"
 
 # P2P accept addresses for the syncing protocol
-sync_p2p_accept = ["tls://127.0.0.1:8642"]
+sync_p2p_accept = ["tcp://127.0.0.1:8642"]
 
 # P2P external addresses for the syncing protocol
-sync_p2p_external = ["tls://127.0.0.1:8642"]
+sync_p2p_external = ["tcp://127.0.0.1:8642"]
 
 # Connection slots for the syncing protocol
 #sync_slots = 8

+ 1 - 1
contrib/localnet/darkfid/lilith_config.toml

@@ -10,7 +10,7 @@
 #rpc_listen = "tcp://127.0.0.1:18927"
 
 # Daemon published urls, common for all enabled networks
-urls = ["tls://127.0.0.1"]
+urls = ["tcp://127.0.0.1"]
 
 # Hosts .tsv file to use
 hosts_file="lilith_hosts.tsv"