Make a copy of sessions to loop over
This commit is contained in:
parent
1a48ad136c
commit
0ac36aeca0
@ -329,9 +329,10 @@ class Controller(util.LoggedClass):
|
|||||||
self.cache_height = self.bp.db_height
|
self.cache_height = self.bp.db_height
|
||||||
self.header_cache.clear()
|
self.header_cache.clear()
|
||||||
|
|
||||||
for session in self.sessions:
|
# Make a copy; self.sessions can change whilst await-ing
|
||||||
if isinstance(session, ElectrumX):
|
sessions = [s for s in self.sessions if isinstance(s, ElectrumX)]
|
||||||
await session.notify(self.bp.db_height, touched)
|
for session in sessions:
|
||||||
|
await session.notify(self.bp.db_height, touched)
|
||||||
|
|
||||||
def electrum_header(self, height):
|
def electrum_header(self, height):
|
||||||
'''Return the binary header at the given height.'''
|
'''Return the binary header at the given height.'''
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user