genev_config.toml 1012 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ## JSON-RPC listen URL
  2. #rpc_listen="tcp://127.0.0.1:28880"
  3. ## Current display name
  4. #nickname="NICKNAME"
  5. ## Sets Datastore Path
  6. #datastore = "~/.local/darkfi/genev_db"
  7. ## Sets DB logs replay datastore path
  8. #replay_datastore = "~/.local/darkfi/replayed_darkirc_db"
  9. ## Run in replay mode to store Sled DB instructions
  10. ## (for eventgraph debugging tool)
  11. #replay_mode = false
  12. ## net settings
  13. [net]
  14. ## P2P accept addresses
  15. #inbound = ["tcp://127.0.0.1:28881"]
  16. ## Connection slots
  17. outbound_connections = 8
  18. ## P2P external addresses
  19. #external_addr = ["tls://127.0.0.1:28881"]
  20. ## Peers to connect to
  21. #peers = ["tls://127.0.0.1:28881"]
  22. ## Seed nodes to connect to
  23. seeds = ["tls://lilith0.dark.fi:28881", "tls://lilith1.dark.fi:28881"]
  24. # Prefered transports for outbound connections
  25. #transports = ["tls", "tcp"]
  26. ## these are the default configuration for the p2p network
  27. #manual_attempt_limit=0
  28. #seed_query_timeout_seconds=8
  29. #connect_timeout_seconds=10
  30. #channel_handshake_seconds=4
  31. #channel_heartbeat_seconds=10