summaryrefslogtreecommitdiff
path: root/bla.py
diff options
context:
space:
mode:
Diffstat (limited to 'bla.py')
-rw-r--r--bla.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bla.py b/bla.py
index d3ddcdf..fafbd5d 100644
--- a/bla.py
+++ b/bla.py
@@ -46,7 +46,7 @@ def process_ledger(file_path, output_path):
trades_by_refid[row["refid"]].append(row)
# Handle deposits
- elif row["type"] == "deposit":
+ elif row["type"] == "deposit" and row["asset"] != "EUR":
currency = row["asset"]
fifo_queues.setdefault(currency, FIFOQueue())
amount = float(row["amount"])