diff options
author | uvok | 2025-04-14 20:42:13 +0200 |
---|---|---|
committer | uvok | 2025-04-14 20:42:13 +0200 |
commit | 869b35a8c3c6b11941087d008ad3eb42da257a12 (patch) | |
tree | ad3f5c1b72cebe26678b3eaba7504160ba62cf06 | |
parent | 5e99acb7c2b0c3b7106a2ed0ac39ce00d8b335eb (diff) |
don't care about deposit EUR
-rw-r--r-- | bla.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"]) |