node3.toml 583 B

12345678910111213141516171819202122
  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:38970"]
  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. ]
  18. # Allow localnet hosts
  19. localnet = true