add server list to setup.py

This commit is contained in:
ThomasV 2017-09-14 10:25:04 +02:00
parent 8da36e3bd1
commit 51718501fd
2 changed files with 7 additions and 0 deletions

View File

@ -184,6 +184,11 @@ class ElectrumGui:
w = self.create_window_for_wallet(wallet)
if uri:
w.pay_to_URI(uri)
w.bring_to_top()
w.setWindowState(w.windowState() & ~QtCore.Qt.WindowMinimized | QtCore.Qt.WindowActive)
# this will activate the window
w.activateWindow()
return w
def close_window(self, window):

View File

@ -71,6 +71,8 @@ setup(
},
package_data={
'electrum': [
'servers.json',
'servers_testnet.json',
'currencies.json',
'www/index.html',
'wordlist/*.txt',