mirror of
https://github.com/logos-blockchain/logos-blockchain-specs.git
synced 2026-01-08 16:13:10 +00:00
11 lines
204 B
Python
11 lines
204 B
Python
import simpy
|
|
|
|
|
|
class Simulation:
|
|
def __init__(self):
|
|
self.env = simpy.Environment()
|
|
self.p2p = None # TODO: implement p2p
|
|
|
|
def run(self, until):
|
|
self.env.run(until=until)
|