File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/aleph_client/commands Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -243,13 +243,13 @@ async def wait_for_confirmed_flow(account: ETHAccount, receiver: str):
243243
244244
245245async def filter_only_valid_messages (messages : List [AlephMessage ]):
246- """Iteratively check the status of each message from the API and only return
246+ """Iteratively check the status of each message from the API and only return
247247 messages whose status is processed.
248248 """
249249 filtered_messages = []
250250 async with AlephHttpClient (api_server = settings .API_HOST ) as client :
251251 for message in messages :
252- item_hash : ItemHash = message .item_hash
252+ item_hash : ItemHash = message .item_hash
253253 try :
254254 msg = await client .get_message (ItemHash (item_hash ))
255255 filtered_messages .append (msg )
You can’t perform that action at this time.
0 commit comments