From 9c28489bc025929eb25c53b7b10562f95179a98d Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 10 Jul 2017 09:46:11 +0200 Subject: [PATCH] fix wallet.can_export --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 5e7c00084..d83262d86 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -995,7 +995,7 @@ class Abstract_Wallet(PrintError): self.synchronize() def can_export(self): - return not self.is_watching_only() + return not self.is_watching_only() and hasattr(self.keystore, 'get_private_key') def is_used(self, address): h = self.history.get(address,[])