mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-20 13:28:20 +02:00
5 lines
135 B
Python
5 lines
135 B
Python
from bitcoin.core import CBlockHeader
|
|
|
|
|
|
def parse_block_header(header_bytes: bytes):
|
|
return CBlockHeader.deserialize(header_bytes)
|