1
0

remove Transaction.requires_fee()

This commit is contained in:
SomberNight
2017-11-09 22:15:47 +01:00
parent ce4be1f8f2
commit f8518c78d8
2 changed files with 1 additions and 24 deletions

View File

@@ -1354,7 +1354,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
if use_rbf:
tx.set_rbf(True)
if fee < self.wallet.relayfee() * tx.estimated_size() / 1000 and tx.requires_fee(self.wallet):
if fee < self.wallet.relayfee() * tx.estimated_size() / 1000:
self.show_error(_("This transaction requires a higher fee, or it will not be propagated by the network"))
return