1
0
mirror of https://github.com/ACINQ/eclair.git synced 2024-11-19 01:43:22 +01:00

Added quotes to eclair.bitcoind.zmq parameter value in README.md (#394)

The sample value for eclair.bitcoind.zmq requires quotes to comply with HOCON specifications.
This commit is contained in:
Dimitris Tsapakidis 2018-01-29 19:41:40 +02:00 committed by Dominique
parent d5b0afb9e0
commit e55e1e0dab

View File

@ -100,7 +100,7 @@ name | description
eclair.api.password | API password (BASIC) | "" (must be set if the API is enabled)
eclair.bitcoind.rpcuser | Bitcoin Core RPC user | foo
eclair.bitcoind.rpcpassword | Bitcoin Core RPC password | bar
eclair.bitcoind.zmq | Bitcoin Core ZMQ address | tcp://127.0.0.1:29000
eclair.bitcoind.zmq | Bitcoin Core ZMQ address | "tcp://127.0.0.1:29000"
eclair.gui.unit | Unit in which amounts are displayed (possible values: msat, sat, mbtc, btc) | btc
Quotes are not required unless the value contains special characters. Full syntax guide [here](https://github.com/lightbend/config/blob/master/HOCON.md).