Browse Source

gui should always use daemon if it is running

283
ThomasV 11 years ago
parent
commit
37ad7d8b0b
  1. 4
      electrum

4
electrum

@ -221,8 +221,8 @@ if __name__ == '__main__':
# network interface
if not options.offline:
if options.daemon:
s = daemon_socket()
s = daemon_socket(start_daemon=options.daemon)
if s:
network = NetworkProxy(s, config)
network.start()
else:

Loading…
Cancel
Save