Example #1
0
 async def two_nodes(self):
     async for _ in setup_two_nodes(test_constants):
         yield _
Example #2
0
 async def two_nodes(self):
     async for _ in setup_two_nodes({"COINBASE_FREEZE_PERIOD": 0}):
         yield _
Example #3
0
 async def two_nodes_standard_freeze(self):
     async for _ in setup_two_nodes({"COINBASE_FREEZE_PERIOD": 200}):
         yield _
Example #4
0
 async def two_nodes(self):
     async for _ in setup_two_nodes():
         yield _
Example #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 _
Example #6
0
 async def two_nodes(self, db_version):
     async for _ in setup_two_nodes(test_constants, db_version=db_version):
         yield _
Example #7
0
async def two_nodes():
    constants = test_constants.replace(COINBASE_FREEZE_PERIOD=0)
    async for _ in setup_two_nodes(constants):
        yield _
 async def two_nodes_small_freeze(self):
     async for _ in setup_two_nodes({"COINBASE_FREEZE_PERIOD": 30}):
         yield _