Merge #280: lnd: fix rpc/rest port configuration

5feb9e3eae lnd: fix rpc/rest port configuration (Martin Milata)

Pull request description:

ACKs for top commit:
  erikarvstedt:
    ACK 5feb9e3eae

Tree-SHA512: 7d743d4621e0a86dd636e77622a9369a630d6fe3375d0f89e22fc7175da94d5ab7eb17e61f3433061cb00ef5d5c9e7b51df6f7cd95578de9e33dd859c4547b46
This commit is contained in:
Jonas Nick 2020-12-07 16:34:39 +00:00
commit 7d370e9995
No known key found for this signature in database
GPG Key ID: 4861DBF262123605
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ let
tlskeypath=${secretsDir}/lnd-key
listen=${toString cfg.listen}:${toString cfg.listenPort}
rpclisten=${cfg.rpclisten}
restlisten=${cfg.restlisten}
rpclisten=${cfg.rpclisten}:${toString cfg.rpcPort}
restlisten=${cfg.restlisten}:${toString cfg.restPort}
bitcoin.${bitcoind.network}=1
bitcoin.active=1