on_header: return early if block_height is missing

This commit is contained in:
ThomasV 2014-06-12 15:49:53 +02:00
parent 6631ab9406
commit 173c034e26

View file

@ -371,8 +371,11 @@ class Network(threading.Thread):
def on_header(self, i, r):
result = r.get('result')
if not result: return
if not result:
return
height = result.get('block_height')
if not height:
return
self.heights[i.server] = height
self.merkle_roots[i.server] = result.get('merkle_root')
self.utxo_roots[i.server] = result.get('utxo_root')