From a088940496dcd457b112abe175052aa17bb545ce Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 16 Aug 2016 12:11:39 +0200 Subject: [PATCH] add Wallet.can_import --- lib/wallet.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/wallet.py b/lib/wallet.py index 41e533afe..e3d91cf91 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -1152,6 +1152,9 @@ class Abstract_Wallet(PrintError): def get_fingerprint(self): raise NotImplementedError() + def can_import(self): + return False + class Imported_Wallet(Abstract_Wallet):