Пример #1
0
 async def two_nodes(self):
     async for _ in setup_two_nodes(test_constants):
         yield _
Пример #2
0
 async def two_nodes(self):
     async for _ in setup_two_nodes({"COINBASE_FREEZE_PERIOD": 0}):
         yield _
Пример #3
0
 async def two_nodes_standard_freeze(self):
     async for _ in setup_two_nodes({"COINBASE_FREEZE_PERIOD": 200}):
         yield _
Пример #4
0
 async def two_nodes(self):
     async for _ in setup_two_nodes():
         yield _
Пример #5
0
 async def two_nodes_small_freeze(self):
     constants = test_constants.replace(COINBASE_FREEZE_PERIOD=30)
     async for _ in setup_two_nodes(constants):
         yield _
Пример #6
0
 async def two_nodes(self, db_version):
     async for _ in setup_two_nodes(test_constants, db_version=db_version):
         yield _
Пример #7
0
async def two_nodes():
    constants = test_constants.replace(COINBASE_FREEZE_PERIOD=0)
    async for _ in setup_two_nodes(constants):
        yield _
Пример #8
0
 async def two_nodes_small_freeze(self):
     async for _ in setup_two_nodes({"COINBASE_FREEZE_PERIOD": 30}):
         yield _