From 37291760231396c4f07e6ce28d25d420095efc33 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Fri, 16 Nov 2018 18:31:10 -0500 Subject: [PATCH] ssadsadasdasdasdasdasdasda --- electrum/blockchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/blockchain.py b/electrum/blockchain.py index e27ecda33..562f815cd 100644 --- a/electrum/blockchain.py +++ b/electrum/blockchain.py @@ -83,7 +83,7 @@ def hash_header(header: dict) -> str: def pow_hash_header(header: dict) -> str: if header is None: return '0' * 64 - return hash_encode(PoWHash(bfh(serialize_header(header)))) + return hash_encode(PoWHash(bfh(header))) def sha256(x): return hashlib.sha256(x).digest()