Add fee entry to DRY_ORDER dict as defined by ccxt

This commit is contained in:
Matthias Voppichler 2018-04-25 09:03:32 +02:00
parent 98669a3d62
commit 483415cd65

View File

@ -134,7 +134,8 @@ def buy(pair: str, rate: float, amount: float) -> Dict:
'side': 'buy',
'remaining': 0.0,
'datetime': arrow.utcnow().isoformat(),
'status': 'closed'
'status': 'closed',
'fee': None
}
return {'id': order_id}