From 501bbdbd6799b0c86c02f7605c8c04e42b7382ac Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 10 Sep 2014 01:56:37 +0200 Subject: [PATCH] fix num zeros bug --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 214643c9..dd0ba754 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -2559,7 +2559,7 @@ class ElectrumWindow(QMainWindow): value = nz.value() if self.num_zeros != value: self.num_zeros = value - self.config.set_key('num_zeros', nz, True) + self.config.set_key('num_zeros', value, True) self.update_history_tab() self.update_address_tab() nz.valueChanged.connect(on_nz)