From 4d4aeaac63d28ca3fee99523b059c31502532bb7 Mon Sep 17 00:00:00 2001 From: ShahanaFarooqui Date: Tue, 9 Oct 2018 15:14:31 -0400 Subject: [PATCH 1/4] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..49f0841d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -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. From 8e676615c1765599a1e570f554ae1709ddc3412d Mon Sep 17 00:00:00 2001 From: ShahanaFarooqui Date: Tue, 9 Oct 2018 15:15:38 -0400 Subject: [PATCH 2/4] Update issue templates --- .github/ISSUE_TEMPLATE/feature_request.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..066b2d92 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -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. From b9a6a788cc604542c55bca0dcadf7c487c1f136f Mon Sep 17 00:00:00 2001 From: saubyk <39208279+saubyk@users.noreply.github.com> Date: Tue, 9 Oct 2018 19:22:28 -0400 Subject: [PATCH 3/4] Update README.md --- README.md | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index a3d9bb3b..16e5733b 100644 --- a/README.md +++ b/README.md @@ -68,35 +68,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=`` - Restart=always - TimeoutSec=120 - RestartSec=30 [Install] - WantedBy=multi-user.target - +``` * enable and start RTL From bcad8d83ba1e47c9dd6d3005da215cfd09937ce1 Mon Sep 17 00:00:00 2001 From: saubyk <39208279+saubyk@users.noreply.github.com> Date: Tue, 9 Oct 2018 19:23:35 -0400 Subject: [PATCH 4/4] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 16e5733b..a9252581 100644 --- a/README.md +++ b/README.md @@ -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. @@ -79,7 +80,7 @@ After=lnd.service [Service] ExecStart=/usr/bin/node /home/admin/Projects/RTL/rtl --lndir /home/admin/.lnd/data/chain/bitcoin/testnet/ -User=`` +User= Restart=always TimeoutSec=120 RestartSec=30