dchat2.toml 580 B

1234567891011121314151617181920212223
  1. # dchat toml
  2. ## RPC listen address.
  3. rpc_listen="tcp://127.0.0.1:52345"
  4. [net]
  5. ## P2P accept addresses Required for inbound nodes.
  6. inbound=["tcp://127.0.0.1:32448"]
  7. ## P2P external addresses. Required for inbound nodes.
  8. external_addrs=["tcp://127.0.0.1:32448"]
  9. ## Seed nodes to connect to. Required for inbound and outbound nodes.
  10. seeds=["tcp://127.0.0.1:44448"]
  11. ## Outbound connect slots. Required for outbound nodes.
  12. outbound_connections = 5
  13. # Prefered transports for outbound connections
  14. allowed_transports = ["tcp"]
  15. # Set to true if testing on localhost
  16. localnet = true