aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/populate_tranche_cashflows.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/populate_tranche_cashflows.py b/python/populate_tranche_cashflows.py
index 971b3043..6638c002 100644
--- a/python/populate_tranche_cashflows.py
+++ b/python/populate_tranche_cashflows.py
@@ -51,7 +51,7 @@ def insert_tranche_cashflows(
c.execute(
"INSERT INTO tranche_cashflows VALUES(%s, %s, %s, %s, %s) "
"ON CONFLICT (date, tranche_id) DO NOTHING",
- (auction_date + bus_day, tranche_id, principal, accrued, "USD"),
+ (auction_date + bus_day * 3, tranche_id, principal, accrued, "USD"),
)
dawndb.commit()