File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
- from asyncio import Future
2
1
import asyncio
3
2
import json
4
3
import os
@@ -282,7 +281,9 @@ async def sync(
282
281
283
282
instructions .extend (product_instructions )
284
283
if send_transactions :
285
- transactions .append (self .send_transaction (product_instructions , product_keypairs ))
284
+ transactions .append (
285
+ self .send_transaction (product_instructions , product_keypairs )
286
+ )
286
287
287
288
await asyncio .gather (* transactions )
288
289
@@ -306,7 +307,9 @@ async def sync(
306
307
if price_instructions :
307
308
instructions .extend (price_instructions )
308
309
if send_transactions :
309
- transactions .append (self .send_transaction (price_instructions , price_keypairs ))
310
+ transactions .append (
311
+ self .send_transaction (price_instructions , price_keypairs )
312
+ )
310
313
311
314
await asyncio .gather (* transactions )
312
315
You can’t perform that action at this time.
0 commit comments