From cdb57e4fce9a0a2d5adfac7d610e7a9deb76f841 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Fri, 16 Nov 2018 13:43:07 -0500 Subject: [PATCH] fix indent --- electrum/blockchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/blockchain.py b/electrum/blockchain.py index eb9a8cb71..55c674839 100644 --- a/electrum/blockchain.py +++ b/electrum/blockchain.py @@ -45,7 +45,7 @@ def serialize_header(header_dict: dict) -> str: s = int_to_hex(header_dict['version'], 4) \ + rev_hex(header_dict['prev_block_hash']) \ + rev_hex(header_dict['merkle_root']) \ - + rev_hex(res.get('claim_trie_root')) + + rev_hex(res.get('claim_trie_root')) \ + int_to_hex(int(header_dict['timestamp']), 4) \ + int_to_hex(int(header_dict['bits']), 4) \ + int_to_hex(int(header_dict['nonce']), 4)