diff options
| author | Luke Hoersten <[email protected]> | 2024-10-07 23:30:59 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2024-10-07 23:30:59 -0500 |
| commit | 8fd2d5ebae4bddbff715521847860918fe9c71e1 (patch) | |
| tree | 75e9a4c4c0a9d3d08520b348c264fa61133446aa | |
| parent | 95397910439bbe917ae12fd1fea8bfb4ef1d5a4c (diff) | |
Added hacks to fix lnd bitcoind 28 bug.
| -rw-r--r-- | bitcoind/templates/bitcoin.conf.j2 | 2 | ||||
| -rw-r--r-- | lnd/templates/lnd.conf.j2 | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/bitcoind/templates/bitcoin.conf.j2 b/bitcoind/templates/bitcoin.conf.j2 index 9258aa1..82397f8 100644 --- a/bitcoind/templates/bitcoin.conf.j2 +++ b/bitcoind/templates/bitcoin.conf.j2 @@ -16,6 +16,8 @@ rpcpassword={{bitcoind_rpc_pass}} zmqpubrawblock=tcp://127.0.0.1:28332 zmqpubrawtx=tcp://127.0.0.1:28333 +deprecatedrpc=warnings + txindex={{bitcoind_enable_txindex}} {% for node in bitcoind_add_node %}addnode={{node}} diff --git a/lnd/templates/lnd.conf.j2 b/lnd/templates/lnd.conf.j2 index 63114fa..d93a820 100644 --- a/lnd/templates/lnd.conf.j2 +++ b/lnd/templates/lnd.conf.j2 @@ -14,5 +14,4 @@ restlisten=0.0.0.0:8080 [Bitcoin] bitcoin.mainnet=true -bitcoin.active=true bitcoin.node={{lnd_bitcoin_node}} |
