()
| 17904 | balance = 0 |
| 17905 | |
| 17906 | def _commit_tx_window(): |
| 17907 | first_utc, last_utc, age_days = self._crypto_ts_window(timestamps) |
| 17908 | if first_utc: |
| 17909 | info["Prima transazione UTC"] = first_utc |
| 17910 | info["Ultima transazione UTC"] = last_utc |
| 17911 | if age_days is not None: |
| 17912 | info["Età prima tx (giorni)"] = str(age_days) |
| 17913 | |
| 17914 | # --- BITCOIN --- |
| 17915 | if ticker == "BTC": |
nothing calls this directly
no test coverage detected