Skip to content
Snippets Groups Projects
Commit 237dc54a authored by inso's avatar inso
Browse files

Fixed so it can run

parent c410db6b
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,6 @@ class HistoryTableModel(QAbstractTableModel): ...@@ -27,7 +27,6 @@ class HistoryTableModel(QAbstractTableModel):
self.account = account self.account = account
self.community = community self.community = community
self.columns = ('Date', 'UID/Public key', 'Payment', 'Deposit', 'Comment') self.columns = ('Date', 'UID/Public key', 'Payment', 'Deposit', 'Comment')
self.sorting = lambda
self.transactions = self.account.transactions_sent(self.community) + \ self.transactions = self.account.transactions_sent(self.community) + \
self.account.transactions_awaiting(self.community) + \ self.account.transactions_awaiting(self.community) + \
self.account.transactions_received(self.community) self.account.transactions_received(self.community)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment