Browse Source

fix too short headers file

3.1
ThomasV 7 years ago
parent
commit
4bab8b63e1
  1. 4
      lib/network.py

4
lib/network.py

@ -949,8 +949,8 @@ class Network(util.DaemonThread):
def init_headers_file(self):
b = self.blockchains[0]
filename = b.path()
if not os.path.exists(filename):
length = 80 * len(bitcoin.NetworkConstants.CHECKPOINTS) * 2016
length = 80 * len(bitcoin.NetworkConstants.CHECKPOINTS) * 2016
if not os.path.exists(filename) or os.path.getsize(filename) < length:
with open(filename, 'wb') as f:
if length>0:
f.seek(length-1)

Loading…
Cancel
Save