perform easy test first (lazy evaluation)

This commit is contained in:
ThomasV 2014-09-13 15:23:35 +02:00
parent 5f4bcb420b
commit 81c00956e8
1 changed files with 1 additions and 1 deletions

View File

@ -1091,7 +1091,7 @@ class ElectrumWindow(QMainWindow):
self.show_message(str(e))
return
if tx.requires_fee(self.wallet.verifier) and tx.get_fee() < MIN_RELAY_TX_FEE:
if tx.get_fee() < MIN_RELAY_TX_FEE and tx.requires_fee(self.wallet.verifier):
QMessageBox.warning(self, _('Error'), _("This transaction requires a higher fee, or it will not be propagated by the network."), _('OK'))
return