From c760646182f01bb929e5deb1175dcae9f8c6252b Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Fri, 16 Nov 2018 16:34:35 -0500 Subject: [PATCH] asdasdasdas --- electrum/blockchain.py | 1 + 1 file changed, 1 insertion(+) diff --git a/electrum/blockchain.py b/electrum/blockchain.py index baa876f43..a3953a112 100644 --- a/electrum/blockchain.py +++ b/electrum/blockchain.py @@ -60,6 +60,7 @@ def deserialize_header(s: bytes, height: int) -> dict: h = {} h['version'] = hex_to_int(s[0:4]) h['prev_block_hash'] = hash_encode(s[4:36]) + h['merkle_root'] = hash_encode(s[36:68]) h['claim_trie_root'] = hash_encode(s[68:100]) h['timestamp'] = hex_to_int(s[100:104]) h['bits'] = hex_to_int(s[104:108])