mirror of
https://github.com/logos-blockchain/logos-blockchain-specs.git
synced 2026-01-21 22:43:09 +00:00
12 lines
209 B
Python
12 lines
209 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Config:
|
|
running_time: int
|
|
num_nodes: int
|
|
num_mix_layers: int
|
|
message_interval: int
|
|
message_prob: float
|
|
max_message_prep_time: float
|