Skip to content

Commit

Permalink
Fix forwards table + postgres note
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptosharks131 committed Dec 28, 2023
1 parent 6573691 commit 86f486a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ To restart the uWSGI service, use the following command:
sudo systemctl restart uwsgi.service
```

### Postgres
Optionally, you may chose to run LNDg using a postgres database instead of the default sqlite3.

A setup guide can be found here: [Postgres Setup](https://github.com/cryptosharks131/lndg/blob/master/postgres.md)

## Key Features

### Track Peer Events
Expand Down
4 changes: 2 additions & 2 deletions gui/templates/failed_htlcs.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% load humanize %}
{% if agg_failed_htlcs %}
<div class="w3-container w3-padding-small">
<h2><a href="/failed_htlcs">Top 21 Failed Downstream Routes</a></h2>
<h2>Top 21 Failed Downstream Routes</h2>
<table class="w3-table-all w3-centered w3-hoverable">
<tr>
<th>Chan In ID</th>
Expand Down Expand Up @@ -33,7 +33,7 @@ <h2><a href="/failed_htlcs">Top 21 Failed Downstream Routes</a></h2>
</div>
{% endif %}
<div id="failedhtlcsDiv" class="w3-container w3-padding-small">
<h2><a href="/failed_htlcs">Last Failed HTLCs</a></h2>
<h2>Last Failed HTLCs</h2>
<table id="failedhtlcsTable" class="w3-table-all w3-centered w3-hoverable">
<tr>
<th>Timestamp</th>
Expand Down
6 changes: 3 additions & 3 deletions gui/templates/forwards.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ <h2>Last Forwards</h2>
<table id="forwardsTable" class="w3-table-all w3-centered w3-hoverable">
<tr>
<th>Timestamp</th>
<th>Amount In</th>
<th>Amount Out</th>
<th>Channel In Id</th>
<th>Channel In Alias</th>
<th colspan="2">Amount In</th>
<th colspan="2">Amount Out</th>
<th>Channel Out Alias</th>
<th>Channel In Id</th>
<th>Channel Out Id</th>
<th>Fees Earned</th>
<th>PPM Earned</th>
Expand Down

0 comments on commit 86f486a

Please sign in to comment.