8 lines
157 B
Python
8 lines
157 B
Python
|
from enum import Enum
|
||
|
|
||
|
from .phase import DandelionPhase
|
||
|
|
||
|
class StemAcceptResult:
|
||
|
DENY = int(0).to_bytes(1, 'big')
|
||
|
ALLOW = int(1).to_bytes(1, 'big')
|