forked from LBRYCommunity/lbry-sdk
commit
cc34c4b95f
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ class Wallet(object):
|
||||||
s3_height = (len(raw_headers) / HEADER_SIZE) - 1
|
s3_height = (len(raw_headers) / HEADER_SIZE) - 1
|
||||||
local_height = self.local_header_file_height()
|
local_height = self.local_header_file_height()
|
||||||
if s3_height > local_height:
|
if s3_height > local_height:
|
||||||
with open(os.path.join(self.config.path, "blockchain_headers"), "w") as headers_file:
|
with open(os.path.join(self.config.path, "blockchain_headers"), "wb") as headers_file:
|
||||||
headers_file.write(raw_headers)
|
headers_file.write(raw_headers)
|
||||||
log.info("fetched headers from s3 (s3 height: %i)", s3_height)
|
log.info("fetched headers from s3 (s3 height: %i)", s3_height)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue