1
0

force new headers download if file is corrupted

This commit is contained in:
ThomasV
2017-08-03 14:25:50 +02:00
parent 9ca9b6c397
commit 5872bd4722
2 changed files with 4 additions and 3 deletions

View File

@@ -946,10 +946,11 @@ class Network(util.DaemonThread):
self.process_responses(interface)
def init_headers_file(self):
filename = self.blockchains[0].path()
if os.path.exists(filename):
b = self.blockchains[0]
if b.get_hash(0) == bitcoin.GENESIS:
self.downloading_headers = False
return
filename = b.path()
def download_thread():
try:
import urllib, socket