Browse Source

qt tx dialog: rm dead code

master
SomberNight 3 years ago
parent
commit
a2063f8f48
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 9
      electrum/gui/qt/transaction_dialog.py

9
electrum/gui/qt/transaction_dialog.py

@ -936,15 +936,6 @@ class TxDialog(QDialog, MessageBoxMixin):
txid = self.tx.txid() or "<no txid yet>"
self.setWindowTitle(_("Transaction") + ' ' + txid)
def can_finalize(self) -> bool:
return False
def on_finalize(self):
pass # overridden in subclass
def update_fee_fields(self):
pass # overridden in subclass
def maybe_fetch_txin_data(self):
"""Download missing input data from the network, asynchronously.
Note: we fetch the prev txs, which allows calculating the fee and showing "input addresses".

Loading…
Cancel
Save