fix: wrong variable name fee_e
authorThomasV <thomasv@gitorious>
Thu, 12 Jun 2014 07:29:46 +0000 (09:29 +0200)
committerThomasV <thomasv@gitorious>
Thu, 12 Jun 2014 07:29:46 +0000 (09:29 +0200)
gui/qt/main_window.py

index 58aac6a..f4022ca 100644 (file)
@@ -2302,7 +2302,7 @@ class ElectrumWindow(QMainWindow):
         # run the dialog
         if not d.exec_(): return
 
-        fee = self.fee_e.get_amount()
+        fee = fee_e.get_amount()
         if fee is None:
             QMessageBox.warning(self, _('Error'), _('Invalid value') +': %s'%fee, _('OK'))
             return