wallet: is_mine should not depend on history keys

this makes clear_history work
This commit is contained in:
SomberNight 2018-08-14 14:59:55 +02:00
parent 820316e745
commit 93578d9be2
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -272,8 +272,6 @@ class Abstract_Wallet(AddressSynchronizer):
return
def is_mine(self, address):
if not super().is_mine(address):
return False
try:
self.get_address_index(address)
except KeyError: