コード例 #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
ファイル: test_wallet_sync.py プロジェクト: exodusnet/Exodus
 async def wallet_node(self):
     async for _ in setup_node_and_wallet(
             dic={"COINBASE_FREEZE_PERIOD": 0}):
         yield _
コード例 #4
0
ファイル: test_wallet_sync.py プロジェクト: exodusnet/Exodus
 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 _