bitcoind: add consistent address options

This commit is contained in:
Erik Arvstedt 2021-01-14 13:24:01 +01:00
parent 0c6579b942
commit 5b7e0d09b2
No known key found for this signature in database
GPG key ID: 33312B944DD97846
9 changed files with 33 additions and 36 deletions

View file

@ -117,8 +117,8 @@ in {
configFile = builtins.toFile "config" ''
network=${config.services.bitcoind.network}
btcrpcuser=${cfg.bitcoind.rpc.users.btcpayserver.name}
btcrpcurl=http://${config.services.bitcoind.rpcbind}:${toString cfg.bitcoind.rpc.port}
btcnodeendpoint=${config.services.bitcoind.bind}:8333
btcrpcurl=http://${config.services.bitcoind.rpc.address}:${toString cfg.bitcoind.rpc.port}
btcnodeendpoint=${config.services.bitcoind.address}:${toString config.services.bitcoind.port}
bind=${cfg.nbxplorer.bind}
port=${toString cfg.nbxplorer.port}
'';