| 12345678910111213141516171819202122232425262728293031323334353637 |
- ## Sets Datastore Path
- datastore = "/tmp/genev_test/datastore/node2"
- ## Current display name
- #nickname="NICKNAME"
- ## JSON-RPC settings
- [rpc]
- ## JSON-RPC listen URL
- rpc_listen = "tcp://127.0.0.1:28871"
- ## Disabled RPC methods
- rpc_disabled_methods = ["p2p.get_info"]
- ## net settings
- [net]
- ## Connection slots
- outbound_connections = 4
- ## Inbound connection slots
- inbound_connections = 4
- # Prefered transports for outbound connections
- active_profiles = ["tcp"]
- [net.profiles."tcp"]
- ## P2P accept addresses
- inbound = ["tcp://127.0.0.1:28883"]
- ## P2P external addresses
- external_addrs = ["tcp://127.0.0.1:28883"]
- ## Peers to connect to
- #peers = ["tls://127.0.0.1:28881"]
- ## Seed nodes to connect to
- seeds = ["tcp://127.0.0.1:28881"]
|