#!/usr/bin/env python
from __future__ import print_function
'''
Joinmarket GUI using PyQt for doing coinjoins.
Some widgets copied and modified from https://github.com/spesmilo/electrum
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see
' for m in mbinfo]), mbtype='question', title=title) if reply == QMessageBox.Yes: #amount is now accepted; pass control back to reactor self.filter_offers_response = "ACCEPT" else: self.filter_offers_response = "REJECT" self.giveUp() def startNextTransaction(self): jm_single().bc_interface.sync_wallet(w.wallet) self.clientfactory.getClient().clientStart() def takerFinished(self): """Callback (after pass-through signal) for jmclient.Taker on completion of each join transaction. """ if self.taker_finished_fromtx: #not the final finished transaction if self.taker_finished_res: w.statusBar().showMessage("Transaction completed successfully.") self.persistTxToHistory(self.taker.my_cj_addr, self.taker.cjamount, self.taker.txid) log.debug("Waiting for: " + str( self.taker_finished_waittime/1000.0) + " secs.") QtCore.QTimer.singleShot(self.taker_finished_waittime, self.startNextTransaction) else: #a transaction failed; just stop self.giveUp() else: #the final, or a permanent failure if not self.taker_finished_res: log.info("Did not complete successfully, shutting down") else: log.info("All transactions completed correctly") w.statusBar().showMessage("All transaction(s) completed successfully.") self.persistTxToHistory(self.taker.my_cj_addr, self.taker.cjamount, self.taker.txid) if len(self.taker.schedule) == 1: msg = "Transaction has been broadcast.\n" + "Txid: " + \ str(self.taker.txid) else: msg = "All transactions have been broadcast." JMQtMessageBox(self, msg, title="Success") self.cleanUp() def persistTxToHistory(self, addr, amt, txid): #persist the transaction to history with open(jm_single().config.get("GUI", "history_file"), 'ab') as f: f.write(','.join([addr, satoshis_to_amt_str(amt), txid, datetime.datetime.now( ).strftime("%Y/%m/%d %H:%M:%S")])) f.write('\n') #TODO: Windows #update the TxHistory tab txhist = w.centralWidget().widget(3) txhist.updateTxInfo() def toggleButtons(self, on, sched=False): """If first arg is True, set all buttons "on" except "Abort" buttons. (This is the starting condition, and reset condition). If first arg is False, do the opposite, and: If sched, the Abort button is only activated for the Multiple tab. Else, the Abort button is only activated for the Single tab. """ btnsettings = (True, False, True, True, True, False) if not on: btnsettings = [False, True, False, False, False, False] if sched: btnsettings[1] = False btnsettings[5] = True btns = (self.startButton, self.abortButton, self.schedule_set_button, self.schedule_generate_button, self.sch_startButton, self.sch_abortButton) for b, s in zip(btns, btnsettings): b.setEnabled(s) def giveUp(self): self.aborted = True log.debug("Transaction aborted.") self.qtw.setTabEnabled(0, True) self.qtw.setTabEnabled(1, True) self.toggleButtons(True) w.statusBar().showMessage("Transaction aborted.") def cleanUp(self): if not self.taker.txid: if not self.aborted: if not self.taker.ignored_makers: w.statusBar().showMessage("Transaction failed.") JMQtMessageBox(self, "Transaction was not completed.", mbtype='warn', title="Failed") else: reply = JMQtMessageBox( self, '\n'.join([ "The following counterparties did not respond: ", ','.join(self.taker.ignored_makers), "This sometimes happens due to bad network connections.", "", "If you would like to try again, ignoring those", "counterparties, click Yes." ]), mbtype='question', title="Transaction not completed.") if reply == QMessageBox.Yes: self.startSendPayment( ignored_makers=self.taker.ignored_makers) else: self.giveUp() return self.qtw.setTabEnabled(0, True) self.qtw.setTabEnabled(1, True) self.toggleButtons(True) def validateSettings(self): valid, errmsg = validate_address(self.widgets[0][1].text()) if not valid: JMQtMessageBox(self, errmsg, mbtype='warn', title="Error") return False errs = ["Non-zero number of counterparties must be provided.", "Mixdepth must be chosen.", "Amount, in bitcoins, must be provided."] for i in range(1, 4): if self.widgets[i][1].text().size() == 0: JMQtMessageBox(self, errs[i - 1], mbtype='warn', title="Error") return False #QIntValidator does not prevent entry of 0 for counterparties. #Note, use of '1' is not recommended, but not prevented here. if self.widgets[1][1].text() == '0': JMQtMessageBox(self, errs[0], mbtype='warn', title="Error") return False if not w.wallet: JMQtMessageBox(self, "There is no wallet loaded.", mbtype='warn', title="Error") return False return True def showBlockrWarning(self): if jm_single().config.getint("GUI", "privacy_warning") == 0: return False qmb = QMessageBox() qmb.setIcon(QMessageBox.Warning) qmb.setWindowTitle("Privacy Warning") qcb = QCheckBox("Don't show this warning again.") lyt = qmb.layout() lyt.addWidget(QLabel(warnings['blockr_privacy']), 0, 1) lyt.addWidget(qcb, 1, 1) qmb.addButton(QPushButton("Continue"), QMessageBox.YesRole) qmb.addButton(QPushButton("Cancel"), QMessageBox.NoRole) qmb.exec_() switch_off_warning = '0' if qcb.isChecked() else '1' jm_single().config.set("GUI", "privacy_warning", switch_off_warning) res = qmb.buttonRole(qmb.clickedButton()) if res == QMessageBox.YesRole: return False elif res == QMessageBox.NoRole: return True else: log.debug("GUI error: unrecognized button, canceling.") return True class TxHistoryTab(QWidget): def __init__(self): super(TxHistoryTab, self).__init__() self.initUI() def initUI(self): self.tHTW = MyTreeWidget(self, self.create_menu, self.getHeaders()) self.tHTW.setSelectionMode(QAbstractItemView.ExtendedSelection) self.tHTW.header().setResizeMode(QHeaderView.Interactive) self.tHTW.header().setStretchLastSection(False) self.tHTW.on_update = self.updateTxInfo vbox = QVBoxLayout() self.setLayout(vbox) vbox.setMargin(0) vbox.setSpacing(0) vbox.addWidget(self.tHTW) self.updateTxInfo() self.show() def getHeaders(self): '''Function included in case dynamic in future''' return ['Receiving address', 'Amount in BTC', 'Transaction id', 'Date'] def updateTxInfo(self, txinfo=None): self.tHTW.clear() if not txinfo: txinfo = self.getTxInfoFromFile() for t in txinfo: t_item = QTreeWidgetItem(t) self.tHTW.addChild(t_item) for i in range(4): self.tHTW.resizeColumnToContents(i) def getTxInfoFromFile(self): hf = jm_single().config.get("GUI", "history_file") if not os.path.isfile(hf): if w: w.statusBar().showMessage("No transaction history found.") return [] txhist = [] with open(hf, 'rb') as f: txlines = f.readlines() for tl in txlines: txhist.append(tl.strip().split(',')) if not len(txhist[-1]) == 4: JMQtMessageBox(self, "Incorrectedly formatted file " + hf, mbtype='warn', title="Error") w.statusBar().showMessage("No transaction history found.") return [] return txhist[::-1 ] #appended to file in date order, window shows reverse def create_menu(self, position): item = self.tHTW.currentItem() if not item: return address_valid = False if item: address = str(item.text(0)) try: btc.b58check_to_hex(address) address_valid = True except AssertionError: log.debug('no btc address found, not creating menu item') menu = QMenu() if address_valid: menu.addAction("Copy address to clipboard", lambda: app.clipboard().setText(address)) menu.addAction("Copy transaction id to clipboard", lambda: app.clipboard().setText(str(item.text(2)))) menu.addAction("Copy full tx info to clipboard", lambda: app.clipboard().setText( ','.join([str(item.text(_)) for _ in range(4)]))) menu.exec_(self.tHTW.viewport().mapToGlobal(position)) class JMWalletTab(QWidget): def __init__(self): super(JMWalletTab, self).__init__() self.wallet_name = 'NONE' self.initUI() def initUI(self): self.label1 = QLabel( "CURRENT WALLET: " + self.wallet_name + ', total balance: 0.0', self) v = MyTreeWidget(self, self.create_menu, self.getHeaders()) v.setSelectionMode(QAbstractItemView.ExtendedSelection) v.on_update = self.updateWalletInfo self.history = v vbox = QVBoxLayout() self.setLayout(vbox) vbox.setMargin(0) vbox.setSpacing(0) vbox.addWidget(self.label1) vbox.addWidget(v) buttons = QWidget() vbox.addWidget(buttons) self.updateWalletInfo() #vBoxLayout.addWidget(self.label2) #vBoxLayout.addWidget(self.table) self.show() def getHeaders(self): '''Function included in case dynamic in future''' return ['Address', 'Index', 'Balance', 'Used/New'] def create_menu(self, position): item = self.history.currentItem() address_valid = False if item: address = str(item.text(0)) try: btc.b58check_to_hex(address) address_valid = True except AssertionError: log.debug('no btc address found, not creating menu item') menu = QMenu() if address_valid: menu.addAction("Copy address to clipboard", lambda: app.clipboard().setText(address)) menu.addAction("Resync wallet from blockchain", lambda: w.resyncWallet()) #TODO add more items to context menu menu.exec_(self.history.viewport().mapToGlobal(position)) def updateWalletInfo(self, walletinfo=None): l = self.history l.clear() if walletinfo: self.mainwindow = self.parent().parent().parent() rows, mbalances, total_bal = walletinfo if get_network() == 'testnet': self.wallet_name = self.mainwindow.wallet.seed else: self.wallet_name = os.path.basename(self.mainwindow.wallet.path) self.label1.setText("CURRENT WALLET: " + self.wallet_name + ', total balance: ' + total_bal) for i in range(jm_single().config.getint("GUI", "max_mix_depth")): if walletinfo: mdbalance = mbalances[i] else: mdbalance = "{0:.8f}".format(0) m_item = QTreeWidgetItem(["Mixdepth " + str(i) + " , balance: " + mdbalance, '', '', '', '']) l.addChild(m_item) for forchange in [0, 1]: heading = 'EXTERNAL' if forchange == 0 else 'INTERNAL' heading_end = ' addresses m/0/%d/%d/' % (i, forchange) heading += heading_end seq_item = QTreeWidgetItem([heading, '', '', '', '']) m_item.addChild(seq_item) if not forchange: seq_item.setExpanded(True) if not walletinfo: item = QTreeWidgetItem(['None', '', '', '']) seq_item.addChild(item) else: for j in range(len(rows[i][forchange])): item = QTreeWidgetItem(rows[i][forchange][j]) item.setFont(0, QFont(MONOSPACE_FONT)) if rows[i][forchange][j][3] == 'used': item.setForeground(3, QBrush(QColor('red'))) seq_item.addChild(item) class JMMainWindow(QMainWindow): def __init__(self): super(JMMainWindow, self).__init__() self.wallet = None self.initUI() def closeEvent(self, event): quit_msg = "Are you sure you want to quit?" reply = JMQtMessageBox(self, quit_msg, mbtype='question') if reply == QMessageBox.Yes: persist_config() event.accept() else: event.ignore() def initUI(self): self.statusBar().showMessage("Ready") self.setGeometry(300, 300, 250, 150) exitAction = QAction(QIcon('exit.png'), '&Exit', self) exitAction.setShortcut('Ctrl+Q') exitAction.setStatusTip('Exit application') exitAction.triggered.connect(qApp.quit) generateAction = QAction('&Generate', self) generateAction.setStatusTip('Generate new wallet') generateAction.triggered.connect(self.generateWallet) loadAction = QAction('&Load', self) loadAction.setStatusTip('Load wallet from file') loadAction.triggered.connect(self.selectWallet) recoverAction = QAction('&Recover', self) recoverAction.setStatusTip('Recover wallet from seedphrase') recoverAction.triggered.connect(self.recoverWallet) aboutAction = QAction('About Joinmarket', self) aboutAction.triggered.connect(self.showAboutDialog) exportPrivAction = QAction('&Export keys', self) exportPrivAction.setStatusTip('Export all private keys to a csv file') exportPrivAction.triggered.connect(self.exportPrivkeysCsv) menubar = QMenuBar() walletMenu = menubar.addMenu('&Wallet') walletMenu.addAction(loadAction) walletMenu.addAction(generateAction) walletMenu.addAction(recoverAction) walletMenu.addAction(exportPrivAction) walletMenu.addAction(exitAction) aboutMenu = menubar.addMenu('&About') aboutMenu.addAction(aboutAction) self.setMenuBar(menubar) self.show() def showAboutDialog(self): msgbox = QDialog(self) lyt = QVBoxLayout(msgbox) msgbox.setWindowTitle(appWindowTitle) label1 = QLabel() label1.setText( "" + "Read more about Joinmarket
" + "
".join( ["Joinmarket core software version: " + JM_CORE_VERSION, "JoinmarketQt version: " + JM_GUI_VERSION, "Messaging protocol version:" + " %s" % ( str(jm_single().JM_VERSION) ), "Help us support Bitcoin fungibility -", "donate here: "])) label2 = QLabel(donation_address) for l in [label1, label2]: l.setTextFormat(QtCore.Qt.RichText) l.setTextInteractionFlags(QtCore.Qt.TextBrowserInteraction) l.setOpenExternalLinks(True) label2.setText("" + donation_address + "") lyt.addWidget(label1) lyt.addWidget(label2) btnbox = QDialogButtonBox(msgbox) btnbox.setStandardButtons(QDialogButtonBox.Ok) btnbox.accepted.connect(msgbox.accept) lyt.addWidget(btnbox) msgbox.exec_() def exportPrivkeysCsv(self): if not self.wallet: JMQtMessageBox(self, "No wallet loaded.", mbtype='crit', title="Error") return #TODO add password protection; too critical d = QDialog(self) d.setWindowTitle('Private keys') d.setMinimumSize(850, 300) vbox = QVBoxLayout(d) msg = "%s\n%s\n%s" % ( "WARNING: ALL your private keys are secret.", "Exposing a single private key can compromise your entire wallet!", "In particular, DO NOT use 'redeem private key' services proposed by third parties." ) vbox.addWidget(QLabel(msg)) e = QTextEdit() e.setReadOnly(True) vbox.addWidget(e) b = OkButton(d, 'Export') b.setEnabled(False) vbox.addLayout(Buttons(CancelButton(d), b)) private_keys = {} #prepare list of addresses with non-zero balance #TODO: consider adding a 'export insanely huge amount' #option for anyone with gaplimit troubles, although #that is a complete mess for a user, mostly changing #the gaplimit in the Settings tab should address it. rows = get_wallet_printout(self.wallet) addresses = [] for forchange in rows[0]: for mixdepth in forchange: for addr_info in mixdepth: if float(addr_info[2]) > 0: addresses.append(addr_info[0]) done = False def privkeys_thread(): for addr in addresses: time.sleep(0.1) if done: break priv = self.wallet.get_key_from_addr(addr) private_keys[addr] = btc.wif_compressed_privkey( priv, vbyte=get_p2pk_vbyte()) d.emit(QtCore.SIGNAL('computing_privkeys')) d.emit(QtCore.SIGNAL('show_privkeys')) def show_privkeys(): s = "\n".join(map(lambda x: x[0] + "\t" + x[1], private_keys.items( ))) e.setText(s) b.setEnabled(True) d.connect( d, QtCore.SIGNAL('computing_privkeys'), lambda: e.setText("Please wait... %d/%d" % (len(private_keys), len(addresses)))) d.connect(d, QtCore.SIGNAL('show_privkeys'), show_privkeys) threading.Thread(target=privkeys_thread).start() if not d.exec_(): done = True return privkeys_fn_base = 'joinmarket-private-keys' i = 0 privkeys_fn = privkeys_fn_base while os.path.isfile(privkeys_fn + '.csv'): i += 1 privkeys_fn = privkeys_fn_base + str(i) try: with open(privkeys_fn + '.csv', "w") as f: transaction = csv.writer(f) transaction.writerow(["address", "private_key"]) for addr, pk in private_keys.items(): #sanity check if not btc.privtoaddr( btc.from_wif_privkey(pk, vbyte=get_p2pk_vbyte()), magicbyte=get_p2pk_vbyte()) == addr: JMQtMessageBox(None, "Failed to create privkey export -" +\ " critical error in key parsing.", mbtype='crit') return transaction.writerow(["%34s" % addr, pk]) except (IOError, os.error), reason: export_error_label = "JoinmarketQt was unable to produce a private key-export." JMQtMessageBox(None, export_error_label + "\n" + str(reason), mbtype='crit', title="Unable to create csv") except Exception as e: JMQtMessageBox(self, str(e), mbtype='crit', title="Error") return JMQtMessageBox(self, "Private keys exported to: " + privkeys_fn + '.csv', title="Success") def recoverWallet(self): if get_network() == 'testnet': JMQtMessageBox(self, 'recover from seedphrase not supported for testnet', mbtype='crit', title="Error") return d = QDialog(self) d.setModal(1) d.setWindowTitle('Recover from seed') layout = QGridLayout(d) message_e = QTextEdit() layout.addWidget(QLabel('Enter 12 words'), 0, 0) layout.addWidget(message_e, 1, 0) hbox = QHBoxLayout() buttonBox = QDialogButtonBox(self) buttonBox.setStandardButtons(QDialogButtonBox.Ok | QDialogButtonBox.Cancel) buttonBox.button(QDialogButtonBox.Ok).clicked.connect(d.accept) buttonBox.button(QDialogButtonBox.Cancel).clicked.connect(d.reject) hbox.addWidget(buttonBox) layout.addLayout(hbox, 3, 0) result = d.exec_() if result != QDialog.Accepted: return msg = str(message_e.toPlainText()) words = msg.split() #splits on any number of ws chars if not len(words) == 12: JMQtMessageBox(self, "You did not provide 12 words, aborting.", mbtype='warn', title="Error") else: try: seed = mn_decode(words) self.initWallet(seed=seed) except ValueError as e: JMQtMessageBox(self, "Could not decode seedphrase: " + repr(e), mbtype='warn', title="Error") def selectWallet(self, testnet_seed=None): if get_network() != 'testnet': current_path = os.path.dirname(os.path.realpath(__file__)) if os.path.isdir(os.path.join(current_path, 'wallets')): current_path = os.path.join(current_path, 'wallets') firstarg = QFileDialog.getOpenFileName(self, 'Choose Wallet File', directory=current_path) #TODO validate the file looks vaguely like a wallet file log.debug('Looking for wallet in: ' + firstarg) if not firstarg: return decrypted = False while not decrypted: text, ok = QInputDialog.getText(self, 'Decrypt wallet', 'Enter your password:', mode=QLineEdit.Password) if not ok: return pwd = str(text).strip() decrypted = self.loadWalletFromBlockchain(firstarg, pwd) else: if not testnet_seed: testnet_seed, ok = QInputDialog.getText(self, 'Load Testnet wallet', 'Enter a testnet seed:', mode=QLineEdit.Normal) if not ok: return firstarg = str(testnet_seed) pwd = None #ignore return value as there is no decryption failure possible self.loadWalletFromBlockchain(firstarg, pwd) def loadWalletFromBlockchain(self, firstarg=None, pwd=None): if (firstarg and pwd) or (firstarg and get_network() == 'testnet'): try: self.wallet = Wallet( str(firstarg), pwd, max_mix_depth=jm_single().config.getint( "GUI", "max_mix_depth")) except WalletError: JMQtMessageBox(self, "Wrong password", mbtype='warn', title="Error") return False if 'listunspent_args' not in jm_single().config.options('POLICY'): jm_single().config.set('POLICY', 'listunspent_args', '[0]') assert self.wallet, "No wallet loaded" thread = TaskThread(self) task = partial(jm_single().bc_interface.sync_wallet, self.wallet) thread.add(task, on_done=self.updateWalletInfo) self.statusBar().showMessage("Reading wallet from blockchain ...") return True def updateWalletInfo(self): t = self.centralWidget().widget(0) if not self.wallet: #failure to sync in constructor means object is not created newstmsg = "Unable to sync wallet - see error in console." else: t.updateWalletInfo(get_wallet_printout(self.wallet)) newstmsg = "Wallet synced successfully." self.statusBar().showMessage(newstmsg) def resyncWallet(self): if not self.wallet: JMQtMessageBox(self, "No wallet loaded", mbtype='warn', title="Error") return self.loadWalletFromBlockchain() def generateWallet(self): log.debug('generating wallet') if get_network() == 'testnet': seed = self.getTestnetSeed() self.selectWallet(testnet_seed=seed) else: self.initWallet() def getTestnetSeed(self): text, ok = QInputDialog.getText( self, 'Testnet seed', 'Enter a string as seed (can be anything):') if not ok or not text: JMQtMessageBox(self, "No seed entered, aborting", mbtype='warn', title="Error") return return str(text).strip() def initWallet(self, seed=None): '''Creates a new mainnet wallet ''' if not seed: seed = btc.sha256(os.urandom(64))[:32] words = mn_encode(seed) mb = QMessageBox() seed_recovery_warning = [ "WRITE DOWN THIS WALLET RECOVERY SEED.", "If you fail to do this, your funds are", "at risk. Do NOT ignore this step!!!" ] mb.setText("\n".join(seed_recovery_warning)) mb.setInformativeText(' '.join(words)) mb.setStandardButtons(QMessageBox.Ok) ret = mb.exec_() pd = PasswordDialog() while True: pd.exec_() if pd.new_pw.text() != pd.conf_pw.text(): JMQtMessageBox(self, "Passwords don't match.", mbtype='warn', title="Error") continue break walletfile = create_wallet_file(str(pd.new_pw.text()), seed) walletname, ok = QInputDialog.getText(self, 'Choose wallet name', 'Enter wallet file name:', QLineEdit.Normal, "wallet.json") if not ok: JMQtMessageBox(self, "Create wallet aborted", mbtype='warn') return #create wallets subdir if it doesn't exist if not os.path.exists('wallets'): os.makedirs('wallets') walletpath = os.path.join('wallets', str(walletname)) # Does a wallet with the same name exist? if os.path.isfile(walletpath): JMQtMessageBox(self, walletpath + ' already exists. Aborting.', mbtype='warn', title="Error") return else: fd = open(walletpath, 'w') fd.write(walletfile) fd.close() JMQtMessageBox(self, 'Wallet saved to ' + str(walletname), title="Wallet created") self.loadWalletFromBlockchain( str(walletname), str(pd.new_pw.text())) def get_wallet_printout(wallet): """Given a joinmarket wallet, retrieve the list of addresses and corresponding balances to be displayed; this could/should be a re-used function for both command line and GUI. The format of the retrieved data is: rows: is of format [[[addr,index,bal,used],[addr,...]]*5, [[addr, index,..], [addr, index..]]*5] mbalances: is a simple array of 5 mixdepth balances total_balance: whole wallet Bitcoin amounts returned are in btc, not satoshis """ rows = [] mbalances = [] total_balance = 0 for m in range(wallet.max_mix_depth): rows.append([]) balance_depth = 0 for forchange in [0, 1]: rows[m].append([]) for k in range(wallet.index[m][forchange] + jm_single( ).config.getint("GUI", "gaplimit")): addr = wallet.get_addr(m, forchange, k) balance = 0.0 for addrvalue in wallet.unspent.values(): if addr == addrvalue['address']: balance += addrvalue['value'] balance_depth += balance used = ('used' if k < wallet.index[m][forchange] else 'new') if balance > 0.0 or (k >= wallet.index[m][forchange] and forchange == 0): rows[m][forchange].append([addr, str(k), "{0:.8f}".format( balance / 1e8), used]) mbalances.append(balance_depth) total_balance += balance_depth return (rows, ["{0:.8f}".format(x / 1e8) for x in mbalances], "{0:.8f}".format(total_balance / 1e8)) ################################ config_load_error = False app = QApplication(sys.argv) try: load_program_config() except Exception as e: config_load_error = "Failed to setup joinmarket: "+repr(e) if "RPC" in repr(e): config_load_error += '\n'*3 + ''.join( ["Errors about failed RPC connections usually mean an incorrectly ", "configured instance of Bitcoin Core (e.g. it hasn't been started ", "or the rpc ports are not correct in your joinmarket.cfg or your ", "bitcoin.conf file; see the joinmarket wiki for configuration details." ]) JMQtMessageBox(None, config_load_error, mbtype='crit', title='failed to load') exit(1) update_config_for_gui() #for testing, TODO remove jm_single().maker_timeout_sec = 5 #we're not downloading from github, so logs dir #might not exist if not os.path.exists('logs'): os.makedirs('logs') appWindowTitle = 'JoinMarketQt' w = JMMainWindow() tabWidget = QTabWidget(w) tabWidget.addTab(JMWalletTab(), "JM Wallet") settingsTab = SettingsTab() tabWidget.addTab(settingsTab, "Settings") tabWidget.addTab(SpendTab(), "Coinjoins") tabWidget.addTab(TxHistoryTab(), "Tx History") w.resize(600, 500) suffix = ' - Testnet' if get_network() == 'testnet' else '' w.setWindowTitle(appWindowTitle + suffix) tabWidget.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding) w.setCentralWidget(tabWidget) w.show() sys.exit(app.exec_())