genevd_c.toml 830 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ## JSON-RPC listen URL
  2. rpc_listen = "tcp://127.0.0.1:28872"
  3. ## Sets Datastore Path
  4. datastore = "/tmp/genev_test/datastore/node3"
  5. ## Current display name
  6. #nickname="NICKNAME"
  7. ## net settings
  8. [net]
  9. ## P2P accept addresses
  10. inbound = ["tcp://127.0.0.1:28884"]
  11. ## Connection slots
  12. outbound_connections = 4
  13. ## Inbound connection slots
  14. # inbound_connections = 4
  15. ## P2P external addresses
  16. external_addrs = ["tcp://127.0.0.1:28884"]
  17. ## Peers to connect to
  18. #peers = ["tls://127.0.0.1:28881"]
  19. ## Seed nodes to connect to
  20. seeds = ["tcp://127.0.0.1:28881"]
  21. # Prefered transports for outbound connections
  22. allowed_transports = ["tcp"]
  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