Browse Source

add server list to setup.py

seed_v14
ThomasV 7 years ago
parent
commit
51718501fd
  1. 5
      gui/qt/__init__.py
  2. 2
      setup.py

5
gui/qt/__init__.py

@ -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):

2
setup.py

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

Loading…
Cancel
Save