Skip to content

Commit

Permalink
Add private outbound
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptosharks131 committed Aug 24, 2022
1 parent 1dedb35 commit c20d536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def home(request):
'node_info': node_info,
'total_channels': total_channels,
'balances': balances,
'total_balance': balances.total_balance + sum_outbound + pending_open_balance + limbo_balance,
'total_balance': balances.total_balance + sum_outbound + pending_open_balance + limbo_balance + private_outbound,
'payments': payments.annotate(ppm=Round((Sum('fee')*1000000)/Sum('value'), output_field=IntegerField())).order_by('-creation_date')[:6],
'invoices': invoices.order_by('-creation_date')[:6],
'forwards': forwards[:15],
Expand Down

0 comments on commit c20d536

Please sign in to comment.