Skip to content

Commit

Permalink
Fix pending htlc count on reset page
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptosharks131 committed Dec 23, 2023
1 parent 458ac1e commit ff6a966
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 @@ -1224,7 +1224,7 @@ def reset(request):
{'name':'Channels', 'count': Channels.objects.count()},
{'name':'PendingChannels', 'count': PendingChannels.objects.count()},
{'name':'Onchain', 'count': Onchain.objects.count()},
{'name':'PendingHTLCs', 'count': FailedHTLCs.objects.count()},
{'name':'PendingHTLCs', 'count': PendingHTLCs.objects.count()},
{'name':'FailedHTLCs', 'count': FailedHTLCs.objects.count()},
{'name':'HistFailedHTLC', 'count': HistFailedHTLC.objects.count()},
{'name':'Autopilot', 'count': Autopilot.objects.count()},
Expand Down

0 comments on commit ff6a966

Please sign in to comment.