Advertisement
Guest User

Untitled

a guest
Aug 14th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. setting up the system: install bitcoind and let it sync, then install lnd and setup a wallet
  2.  
  3. Installing bitcoind:
  4.  
  5. sudo apt-add-repository ppa:bitcoin/bitcoin
  6.  
  7. sudo apt-get update
  8.  
  9. sudo apt-get install bitcoind
  10.  
  11. Start bitcoind:
  12. bitcoind -testnet -rpcuser=kek -rpcpassword=kek -server -rest -daemon -zmqpubrawblock=tcp://127.0.0.1:29000 -zmqpubrawtx=tcp://127.0.0.1:29000
  13.  
  14. Check the status of the bitcoin client: "bitcoin-cli -rpcuser=kek -rpcpassword=kek -testnet getblockcount"
  15.  
  16. Install lnd as recommended, make a new wallet and let it sync.
  17.  
  18. Start LND:
  19.  
  20. ./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