add Wallet.can_import

This commit is contained in:
ThomasV 2016-08-16 12:11:39 +02:00
parent a3f4ee3a7a
commit a088940496
1 changed files with 3 additions and 0 deletions

View File

@ -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):