chainlib/chainlib/block.py

8 lines
96 B
Python

# standard imports
import enum
class BlockSpec(enum.IntEnum):
PENDING = -1
LATEST = 0