mirror of
https://github.com/logos-blockchain/logos-blockchain-specs.git
synced 2026-01-08 16:13:10 +00:00
9 lines
131 B
Python
9 lines
131 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Constraint:
|
|
|
|
def hash(self) -> bytes:
|
|
raise NotImplementedError()
|