diff --git a/lib/wallet.py b/lib/wallet.py index 5e7c0008..d83262d8 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,[])