electrum

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

commit 96c861919433fec9c2023459c057805e24c0479c
parent b2ff7259e6554770a15048c64ed05fca340cef17
Author: ThomasV <thomasv@electrum.org>
Date:   Wed, 15 Mar 2017 06:12:26 +0100

fix #2298

Diffstat:
Mlib/commands.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/commands.py b/lib/commands.py @@ -272,7 +272,7 @@ class Commands: """Get private keys of addresses. You may pass a single wallet address, or a list of wallet addresses.""" if is_address(address): return self.wallet.get_private_key(address, self._password) - domain = json_loads(address) + domain = address return [self.wallet.get_private_key(address, self._password) for address in domain] @command('w')