tShow the broadcast button even if broadcast. - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit b2bfd5af1f7f44337e69655c9ef86fbd44a316fc
DIR parent 3446e1fd565a367fd488f0d723fef3d6deb39642
HTML Author: Neil Booth <kyuupichan@gmail.com>
Date: Sat, 4 Jul 2015 16:37:01 +0900
Show the broadcast button even if broadcast.
It may not actually be broadcast or relayed for various reasons.
Diffstat:
M gui/qt/transaction_dialog.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/gui/qt/transaction_dialog.py b/gui/qt/transaction_dialog.py
t@@ -175,7 +175,7 @@ class TxDialog(QWidget):
else:
time_str = _('Pending')
status = _("%d confirmations")%conf
- elif not self.broadcast:
+ else:
self.broadcast_button.show()
# cannot broadcast when offline
if self.parent.network is None: