commit a088940496dcd457b112abe175052aa17bb545ce parent a3f4ee3a7a62924e66a473300d77595f01d5fad3 Author: ThomasV <thomasv@electrum.org> Date: Tue, 16 Aug 2016 12:11:39 +0200 add Wallet.can_import Diffstat:
M | lib/wallet.py | | | 3 | +++ |
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git 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):