Skip to content

Commit

Permalink
(FIXUP) Fix syntax error.
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyRand committed Mar 25, 2019
1 parent e69fbd8 commit 98c4936
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electrum/blockchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def verify_chunk(self, index: int, chunk: HeaderChunk) -> None:
start_height = index * 2016
prev_hash = self.get_hash(start_height - 1)
target = self.get_target(index-1)
for i, header in enumerate(chunk.deserialized_headers)
for i, header in enumerate(chunk.deserialized_headers):
height = start_height + i
try:
expected_header_hash = self.get_hash(height)
Expand Down

0 comments on commit 98c4936

Please sign in to comment.