electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 37ad7d8b0ba8e4991c184db89b9911f971c74e45
parent af3fd62fd4eaac1365b0b1f3bd5c6dde3e2182c6
Author: ThomasV <thomasv@gitorious>
Date:   Fri, 25 Jul 2014 16:44:22 +0200

gui should always use daemon if it is running

Diffstat:
Melectrum | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/electrum b/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: