Updated Trade class

This commit is contained in:
Sam Germain
2021-06-19 22:19:09 -06:00
parent c7e8439c76
commit 7823a33cbb
2 changed files with 25 additions and 11 deletions

View File

@@ -268,7 +268,7 @@ class FreqtradeBot(LoggingMixin):
# Updating open orders in dry-run does not make sense and will fail.
return
trades: List[Trade] = Trade.get_sold_trades_without_assigned_fees()
trades: List[Trade] = Trade.get_closed_trades_without_assigned_fees()
for trade in trades:
if not trade.is_open and not trade.fee_updated('sell'):