This commit is contained in:
ThomasV 2017-03-29 10:22:19 +02:00
parent b23f788b4a
commit 0105702d0f
1 changed files with 2 additions and 1 deletions

View File

@ -2860,6 +2860,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
def bump_fee_dialog(self, tx):
is_relevant, is_mine, v, fee = self.wallet.get_wallet_delta(tx)
tx_label = wallet.get_label(tx.txid())
tx_size = tx.estimated_size()
d = WindowModalDialog(self, _('Bump Fee'))
vbox = QVBoxLayout(d)
@ -2893,4 +2894,4 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
return
if is_final:
new_tx.set_rbf(False)
self.show_transaction(new_tx)
self.show_transaction(new_tx, desc=tx_label)