Merge branch 'develop'
This commit is contained in:
commit
059848a07a
@ -135,6 +135,11 @@ version prior to the release of 1.0.
|
||||
ChangeLog
|
||||
=========
|
||||
|
||||
Version 0.10.12
|
||||
---------------
|
||||
|
||||
* fixed a bug in 0.10.11 where a dict changed whilst iterating it
|
||||
|
||||
Version 0.10.11
|
||||
---------------
|
||||
|
||||
|
||||
@ -329,9 +329,10 @@ class Controller(util.LoggedClass):
|
||||
self.cache_height = self.bp.db_height
|
||||
self.header_cache.clear()
|
||||
|
||||
for session in self.sessions:
|
||||
if isinstance(session, ElectrumX):
|
||||
await session.notify(self.bp.db_height, touched)
|
||||
# Make a copy; self.sessions can change whilst await-ing
|
||||
sessions = [s for s in self.sessions if isinstance(s, ElectrumX)]
|
||||
for session in sessions:
|
||||
await session.notify(self.bp.db_height, touched)
|
||||
|
||||
def electrum_header(self, height):
|
||||
'''Return the binary header at the given height.'''
|
||||
|
||||
@ -1 +1 @@
|
||||
VERSION = "ElectrumX 0.10.11"
|
||||
VERSION = "ElectrumX 0.10.12"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user