mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
13 lines
266 B
Python
13 lines
266 B
Python
import time
|
|
from ouroboros import Stakeholder
|
|
from ouroboros import Z
|
|
|
|
|
|
EPOCH_LENGTH = 3
|
|
stakeholders = []
|
|
|
|
for i in range(3):
|
|
stakeholders.append(Stakeholder(EPOCH_LENGTH, 'passwd'+str(i)))
|
|
|
|
environment = Z(stakeholders, EPOCH_LENGTH, genesis_time=time.time())
|