예제 #1
0
 async def wallet_node_starting_height(self):
     async for _ in setup_node_and_wallet(test_constants,
                                          starting_height=100):
         yield _
예제 #2
0
 async def wallet_node(self):
     async for _ in setup_node_and_wallet(test_constants):
         yield _
예제 #3
0
 async def wallet_node(self):
     async for _ in setup_node_and_wallet(
             dic={"COINBASE_FREEZE_PERIOD": 0}):
         yield _
예제 #4
0
 async def wallet_node_starting_height(self):
     async for _ in setup_node_and_wallet(dic={"starting_height": 100}):
         yield _
예제 #5
0
 async def wallet_node(self):
     constants = test_constants.replace(COINBASE_FREEZE_PERIOD=0)
     async for _ in setup_node_and_wallet(constants):
         yield _