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