| 12345678910111213141516171819202122232425262728293031323334353637 |
- ## faucetd configuration file
- ##
- ## Please make sure you go through all the settings so you can configure
- ## your daemon properly.
- ##
- ## The default values are left commented. They can be overridden either by
- ## uncommenting, or by using the command-line.
- # Chain to use (testnet, mainnet)
- #chain = "testnet"
- # Path to the wallet database
- #wallet_path = "~/.config/darkfi/faucetd_wallet.db"
- # Password for the wallet database
- #wallet_pass = "changeme"
- # Path to the blockchain database directory
- #database = "~/.config/darkfi/faucetd_blockchain"
- # JSON-RPC listen URL
- #rpc_listen = "tcp://127.0.0.1:8340"
- # P2P accept address for the syncing protocol
- #sync_p2p_accept = "0.0.0.0:8342"
- # P2P external address for the syncing protocol
- #sync_p2p_external = "0.0.0.0:8342"
- # Connection slots for the syncing protocol
- #sync_slots = 8
- # Seed nodes to connect to for the syncing protocol
- #sync_seed = []
- # Peers to connect to for the syncing protocol
- #sync_peer = []
|