Skip to content

Commit 8e136b0

Browse files
author
ThomasV
committed
rm dead code
1 parent c586f1b commit 8e136b0

1 file changed

Lines changed: 0 additions & 14 deletions

File tree

gui/qt/lite_window.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ class MiniWindow(QDialog):
173173

174174
def __init__(self, actuator, expand_callback, config):
175175
super(MiniWindow, self).__init__()
176-
tx = "e08115d0f7819aee65b9d24f81ef9d46eb62bb67ddef5318156cbc3ceb7b703e"
177176

178177
self.actuator = actuator
179178
self.config = config
@@ -501,8 +500,6 @@ def update_history(self, tx_history):
501500
v_str = format_satoshis(value, True)
502501
self.history_list.append(label, v_str, age(timestamp))
503502

504-
def acceptbit(self):
505-
self.actuator.acceptbit(self.quote_currencies[0])
506503

507504
def the_website(self):
508505
webbrowser.open("http://electrum.org")
@@ -806,19 +803,8 @@ def fetch_destination(self, address):
806803
return recipient
807804

808805

809-
def copy_master_public_key(self):
810-
master_pubkey = self.wallet.get_master_public_key()
811-
qApp.clipboard().setText(master_pubkey)
812-
QMessageBox.information(None, _("Copy successful"), _("Your master public key has been copied to your clipboard."))
813806

814807

815-
def acceptbit(self, currency):
816-
master_pubkey = self.wallet.master_public_key
817-
url = "http://acceptbit.com/mpk/%s/%s" % (master_pubkey, currency)
818-
webbrowser.open(url)
819-
820-
def show_seed_dialog(self):
821-
ElectrumWindow.show_seed_dialog(self.wallet)
822808

823809
class MiniDriver(QObject):
824810

0 commit comments

Comments
 (0)