Browse Source

fix bug in cmd.params

283
ThomasV 10 years ago
parent
commit
bf98b547e1
  1. 2
      electrum

2
electrum

@ -180,7 +180,7 @@ def run_cmdline(config):
cmd = known_commands[cmdname] cmd = known_commands[cmdname]
# arguments passed to function # arguments passed to function
args = map(lambda x: config.get(x), cmd.params) args = map(lambda x: config.get(x), map(lambda x: x[0], cmd.params))
# instanciate wallet for command-line # instanciate wallet for command-line
storage = WalletStorage(config.get_wallet_path()) storage = WalletStorage(config.get_wallet_path())

Loading…
Cancel
Save