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

Remove api.user (#370)

It is not verified in the code.
This commit is contained in:
Benoît Verret 2018-01-15 15:21:54 -05:00 committed by Pierre-Marie Padiou
parent 6142d92cc1
commit 2804e8a919
2 changed files with 2 additions and 3 deletions

View File

@ -93,9 +93,8 @@ Here are some of the most common options:
name | description | default value
-----------------------------|---------------------------|--------------
eclair.server.port | Lightning TCP port | 9735
eclair.api.enabled | Enable/disable the API | false. By default the API is disabled. If you want to enable it, you must set a user/password.
eclair.api.enabled | Enable/disable the API | false. By default the API is disabled. If you want to enable it, you must set a password.
eclair.api.port | API HTTP port | 8080
eclair.api.user | API user (BASIC) | "" (must be set if the API is enabled)
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

View File

@ -232,4 +232,4 @@ case object BitcoinZMQConnectionTimeoutException extends RuntimeException("could
case object BitcoinRPCConnectionException extends RuntimeException("could not connect to bitcoind using json-rpc")
case object EmptyAPIPasswordException extends RuntimeException("must set a user/password for the json-rpc api")
case object EmptyAPIPasswordException extends RuntimeException("must set a password for the json-rpc api")