Skip to content
Snippets Groups Projects
Commit 3b9326c0 authored by inso's avatar inso
Browse files

Fix dtreeaval display

parent 26e50c5b
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ class BlockchainsRepo:
c = self._conn.execute(request, tuple(values))
data = c.fetchone()
if data:
return Blockchain(BlockchainParameters(*data[:19]), *data[20:])
return Blockchain(BlockchainParameters(*data[:20]), *data[20:])
def get_all(self, offset=0, limit=1000, sort_by="currency", sort_order="ASC", **search) -> List[Blockchain]:
"""
......
......@@ -190,7 +190,7 @@ class ToolbarView(QFrame, Ui_SakiaToolbar):
self.tr('Last UD date and time (t)'),
localized_data.get('next_ud_median_time', '####') + " BAT",
self.tr('Next UD date and time (t+1)'),
localized_data.get('next_ud_reeaval', '####') + " BAT",
localized_data.get('next_ud_reeval', '####') + " BAT",
self.tr('Next UD reevaluation (t+1)')
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment