1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 01:43:29 +01:00

Add p2p daemon address to config_example.toml

This commit is contained in:
Roman Zeyde 2021-09-18 00:25:55 +03:00
parent 32b6340cc1
commit 3c4e616901

View File

@ -11,9 +11,12 @@
# File where bitcoind stores the cookie, usually file .cookie in its datadir
cookie_file = "/var/run/bitcoin-mainnet/cookie"
# The listening address of bitcoind, port is usually 8332
# The listening RPC address of bitcoind, port is usually 8332
daemon_rpc_addr = "127.0.0.1:8332"
# The listening P2P address of bitcoind, port is usually 8333
daemon_p2p_addr = "127.0.0.1:8333"
# Directory where the index should be stored. It should have at least 70GB of free space.
db_dir = "/some/fast/storage/with/big/size"