outbound.toml 773 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ## IRC listen URL
  2. irc_listen = "127.0.0.1:11066"
  3. ## Sets Datastore Path
  4. datastore = "~/.config/darkfi/darkirc-outbound"
  5. ## JSON-RPC settings
  6. [rpc]
  7. ## JSON-RPC listen URL
  8. rpc_listen = "tcp://127.0.0.1:7777"
  9. ## Disabled RPC methods
  10. rpc_disabled_methods = ["p2p.get_info"]
  11. ## Raft net settings
  12. [net]
  13. ## P2P accept addresses
  14. # inbound=["127.0.0.1:11002"]
  15. ## Connection slots
  16. outbound_connections = 5
  17. ## P2P external addresses
  18. #external_addr=["127.0.0.1:11002"]
  19. ## Peers to connect to
  20. #peers=["127.0.0.1:11003"]
  21. ## Seed nodes to connect to
  22. seeds = ["127.0.0.1:11001"]
  23. ## these are the default configuration for the p2p network
  24. #manual_attempt_limit=0
  25. #seed_query_timeout_seconds=8
  26. #connect_timeout_seconds=10
  27. #channel_handshake_seconds=4
  28. #channel_heartbeat_seconds=10