From acf94e1c6c7c2136360ee54634b334bfa9f5f9c8 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Fri, 16 Nov 2018 18:54:24 -0500 Subject: [PATCH] adasdasda --- electrum/blockchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/blockchain.py b/electrum/blockchain.py index 84c4c8af1..3614dfd1e 100644 --- a/electrum/blockchain.py +++ b/electrum/blockchain.py @@ -227,7 +227,7 @@ class Blockchain(util.PrintError): def verify_chunk(self, index: int, data: bytes) -> None: num = len(data) // HEADER_SIZE start_height = index * 2016 - header = read_header(start_height) + header = self.read_header(start_height) prev_hash = self.get_hash(start_height - 1) bits, target = self.get_target2(start_height, header) for i in range(num):