Guest User

Untitled

a guest
May 24th, 2018
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. ## Setup Bitcoin.conf
  2.  
  3. bitcoin.conf flags for LND integration
  4.  
  5. ```
  6. rpcpassword= // make a strong password
  7. rpcuser=bitcoinrpc
  8. server=1
  9. zmqpubrawblock=tcp://127.0.0.1:28332
  10. zmqpubrawtx=tcp://127.0.0.1:28332
  11. ```
  12.  
  13. ## Setup LND directory and conf
  14.  
  15. $ mkdir ~/.lnd
  16.  
  17. Edit ~/.lnd/lnd.conf
  18.  
  19. ```
  20. [Application Options]
  21. alias=ALIAS
  22. color=#000000
  23. externalip=IP
  24. maxpendingchannels=10
  25. minchansize=250000
  26. rpclisten=0.0.0.0:10009
  27. tlsextraip=IP
  28.  
  29. [autopilot]
  30. autopilot.active=1
  31. autopilot.maxchannels=10
  32. autopilot.minchansize=250000
  33. autopilot.allocation=0.8
  34.  
  35. [Bitcoin]
  36. bitcoin.active=1
  37. bitcoin.feerate=1000
  38. bitcoin.node=bitcoind
  39. bitcoin.testnet=1
  40.  
  41. [bitcoind]
  42. bitcoind.rpcpass= // Password for bitcoind
  43. bitcoind.rpcuser=bitcoinrpc
  44. bitcoind.zmqpath=tcp://127.0.0.1:28332
  45. ```
Add Comment
Please, Sign In to add comment