From 96c861919433fec9c2023459c057805e24c0479c Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 15 Mar 2017 06:12:26 +0100 Subject: [PATCH] fix #2298 --- lib/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/commands.py b/lib/commands.py index 41199989..2ba5ce02 100644 --- 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')