From 3a7def9ef8893a16eef4b589ef6e3b322d76af03 Mon Sep 17 00:00:00 2001 From: vtexier <vit@free.fr> Date: Wed, 11 Mar 2020 16:00:24 +0100 Subject: [PATCH] [fix] fix exception when refresh tx history --- src/sakia/gui/navigation/txhistory/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sakia/gui/navigation/txhistory/controller.py b/src/sakia/gui/navigation/txhistory/controller.py index fa0a179c..12fa8060 100644 --- a/src/sakia/gui/navigation/txhistory/controller.py +++ b/src/sakia/gui/navigation/txhistory/controller.py @@ -213,4 +213,4 @@ class TxHistoryController(QObject): self._logger.debug("Found {} new dividends".format(len(new_dividends))) for ud in new_dividends: - self.app.new_dividend.emit(self.model.connection, ud) + self.model.app.new_dividend.emit(self.model.connection, ud) -- GitLab