node4.toml 614 B

1234567891011121314151617181920212223
  1. ## generic node configuration file
  2. ##
  3. ## Please make sure you go through all the settings so you can configure
  4. ## your daemon properly.
  5. ##
  6. ## The default values are left commented. They can be overridden either by
  7. ## uncommenting, or by using the command-line.
  8. ## P2P network settings
  9. [net]
  10. # P2P accept addresses the instance listens on for inbound connections
  11. inbound = ["tcp+tls://0.0.0.0:38971"]
  12. # Peer nodes to manually connect to
  13. peers = [
  14. "tcp+tls://0.0.0.0:38967",
  15. "tcp+tls://0.0.0.0:38968",
  16. "tcp+tls://0.0.0.0:38969",
  17. "tcp+tls://0.0.0.0:38970",
  18. ]
  19. # Allow localnet hosts
  20. localnet = true