Skip to content

Commit

Permalink
fix: db init function
Browse files Browse the repository at this point in the history
  • Loading branch information
robcxyz committed Jun 25, 2024
1 parent 10d77d1 commit e7d9cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion balanced_backend/db_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def mark_tokens_as_stable(session):
token = result.scalars().first()
if token is not None:
token.is_stable = t["stable"]
token.in_stability = t["stability"]
token.in_stability_fund = t["stability"]
session.merge(token)
else:
logger.info("Token not in DB")
Expand Down

0 comments on commit e7d9cbe

Please sign in to comment.