electrum

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

commit 19d7a81d702baf8a42fd9a5d567036a7c07293ff
parent de5bc0ceaf633272a797b6dbb8050eff976dcc56
Author: ThomasV <thomasv@gitorious>
Date:   Wed,  4 Feb 2015 12:05:46 +0100

restrict plugins to qt for now

Diffstat:
Melectrum | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/electrum b/electrum @@ -222,7 +222,6 @@ if __name__ == '__main__': cmd = args[0] if cmd == 'gui': - init_plugins(config, is_bundle or is_local or is_android) gui_name = config.get('gui', 'classic') if gui_name in ['lite', 'classic']: gui_name = 'qt' @@ -233,6 +232,9 @@ if __name__ == '__main__': sys.exit() #sys.exit("Error: Unknown GUI: " + gui_name ) + if gui_name=='qt': + init_plugins(config, is_bundle or is_local or is_android) + # network interface if not options.offline: s = get_daemon(config, start_daemon=options.daemon)