mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-10 07:08:05 -05:00
23 lines
540 B
TOML
23 lines
540 B
TOML
# dchat toml
|
|
|
|
# JSON-RPC settings
|
|
[rpc]
|
|
# JSON-RPC listen URL
|
|
rpc_listen = "tcp://127.0.0.1:51054"
|
|
|
|
# Disabled RPC methods
|
|
rpc_disabled_methods = ["p2p.get_info"]
|
|
|
|
[net]
|
|
## P2P accept addresses Required for inbound nodes.
|
|
#inbound=["tcp://127.0.0.1:51554"]
|
|
|
|
## P2P external addresses. Required for inbound nodes.
|
|
#external_addrs=["tcp://127.0.0.1:51554"]
|
|
|
|
## Seed nodes to connect to. Required for inbound and outbound nodes.
|
|
seeds=["tcp://127.0.0.1:50515"]
|
|
|
|
## Outbound connect slots. Required for outbound nodes.
|
|
outbound_connections = 5
|