Advertisement
Guest User

Untitled

a guest
Aug 14th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. requirements:
  2. 2GB Ram
  3. ~30GB Disk space on Testnet
  4. ~200GB Disk space on Mainnet
  5.  
  6. setting up the system: install bitcoind and let it sync, then install lnd and setup a wallet
  7.  
  8. Installing bitcoind:
  9.  
  10. sudo apt-add-repository ppa:bitcoin/bitcoin
  11.  
  12. sudo apt-get update
  13.  
  14. sudo apt-get install bitcoind
  15.  
  16. Start bitcoind:
  17. bitcoind -testnet -rpcuser=kek -rpcpassword=kek -server -rest -daemon -zmqpubrawblock=tcp://127.0.0.1:29000 -zmqpubrawtx=tcp://127.0.0.1:29000
  18.  
  19. Check the status of the bitcoin client: "bitcoin-cli -rpcuser=kek -rpcpassword=kek -testnet getblockcount"
  20.  
  21. Install lnd as recommended, make a new wallet and let it sync.
  22.  
  23. Start LND:
  24.  
  25. ./lnd --bitcoin.active --bitcoin.testnet--bitcoind.rpcuser=kek --bitcoind.rpcpass=kek --bitcoin.node=bitcoind --bitcoind.zmqpath=tcp://127.0.0.1:29000 --rpclisten=0.0.0.0:10009
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement