pull/47/head
ShahanaFarooqui 6 years ago
commit da95585786

@ -0,0 +1,33 @@
---
name: Bug report
about: Create a report to help us improve
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Actual behavior**
Tell us what happens instead
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Your environment**
* version of `lnd`
* operating system (`uname -a` on *Nix)
* version of `btcd`, `bitcoind`, or other backend
* any other relevant environment details
**Additional context**
Add any other context about the problem here.

@ -0,0 +1,17 @@
---
name: Feature request
about: Suggest an idea for this project
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

@ -38,6 +38,7 @@ Make sure you are in the RTL directory, where the application was built.
Locate the complete path of the readable macroon file (admin.macroon) on your node.
If you followed the guide above, and your on lnd version 0.4.2 or below it should be `/home/admin/.lnd`.
For lnd version 0.5 it should be `/home/admin/.lnd/data/chain/bitcoin/testnet`.
Other platform users should accordingly locate the directory of the readable macroon file.
@ -68,35 +69,25 @@ If the server started successfully, you should get the below output on the conso
In case you are running a headless rpi or Linux node, you can configure RTL as a service.
* Create RTL systemd unit and with the following content. Save and exit.
`# Raspibolt RTL: systemd unit for RTL`
`# /etc/systemd/system/RTL.service`
```bash
# Raspibolt RTL: systemd unit for RTL
# /etc/systemd/system/RTL.service
[Unit]
Description=RTL daemon
Wants=lnd.service
After=lnd.service
[Service]
ExecStart=/usr/bin/node /home/admin/Projects/RTL/rtl --lndir /home/admin/.lnd/data/chain/bitcoin/testnet/
User=`<user>`
User=<user>
Restart=always
TimeoutSec=120
RestartSec=30
[Install]
WantedBy=multi-user.target
```
* enable and start RTL

Loading…
Cancel
Save