correct function name typos

This commit is contained in:
swsong
2019-12-21 21:02:46 +09:00
committed by Jacob Plaster
parent 7b3700f619
commit 5893077fbb

View File

@@ -34,7 +34,7 @@ async def log_orders_history():
[ print (o) for o in orders ] [ print (o) for o in orders ]
async def log_active_positions(): async def log_active_positions():
positions = await bfx.rest.get_active_positions() positions = await bfx.rest.get_active_position()
print ("Positions:") print ("Positions:")
[ print (p) for p in positions ] [ print (p) for p in positions ]