Files
Matt HauffandGitHub 40db4635a8 [LABS-245] Enable PEP604 Ruff rules (#20269)
* Enable PEP604 Ruff rules

* Fix harcoded signature in test

* Hack CLVMStreamable test with note to fast follow
2025-11-18 12:34:00 -08:00

26 lines
585 B
Python

from __future__ import annotations
from chia_rs.sized_bytes import bytes32
from chia_rs.sized_ints import uint32, uint64
from typing_extensions import Protocol
class BlockRecordProtocol(Protocol):
@property
def header_hash(self) -> bytes32: ...
@property
def height(self) -> uint32: ...
@property
def timestamp(self) -> uint64 | None: ...
@property
def prev_transaction_block_height(self) -> uint32: ...
@property
def prev_transaction_block_hash(self) -> bytes32 | None: ...
@property
def is_transaction_block(self) -> bool: ...