Browse Source

fix off-by-one error when syncing from genesis w/o checkpoints

3.3.3.1
Janus 6 years ago
parent
commit
09dfb0fd1d
  1. 4
      electrum/interface.py

4
electrum/interface.py

@ -381,7 +381,7 @@ class Interface(PrintError):
height -= 1
checkp = False
if height <= constants.net.max_checkpoint():
height = constants.net.max_checkpoint() + 1
height = constants.net.max_checkpoint()
checkp = True
header = await self.get_block_header(height, 'backward')
@ -396,7 +396,7 @@ class Interface(PrintError):
next_height = self.tip - 2 * delta
checkp = False
if next_height <= constants.net.max_checkpoint():
next_height = constants.net.max_checkpoint() + 1
next_height = constants.net.max_checkpoint()
checkp = True
height = next_height

Loading…
Cancel
Save