wallet: synchronize_sequence cleaned up a bit

This commit is contained in:
SomberNight 2018-09-20 20:04:50 +02:00
parent 55b582511e
commit 172ddf4aaf
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -1445,10 +1445,10 @@ class Deterministic_Wallet(Abstract_Wallet):
if len(addresses) < limit: if len(addresses) < limit:
self.create_new_address(for_change) self.create_new_address(for_change)
continue continue
if list(map(lambda a: self.address_is_old(a), addresses[-limit:] )) == limit*[False]: if any(map(self.address_is_old, addresses[-limit:])):
break
else:
self.create_new_address(for_change) self.create_new_address(for_change)
else:
break
def synchronize(self): def synchronize(self):
with self.lock: with self.lock: