tadd Wallet.can_import - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit a088940496dcd457b112abe175052aa17bb545ce DIR parent a3f4ee3a7a62924e66a473300d77595f01d5fad3 HTML 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(-) --- DIR diff --git a/lib/wallet.py b/lib/wallet.py t@@ -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):