Skip to content
This repository has been archived by the owner on Jan 24, 2022. It is now read-only.

Commit

Permalink
feat: change safe ltv threshold to 45
Browse files Browse the repository at this point in the history
  • Loading branch information
etienne-napoleone committed Jul 23, 2021
1 parent ac49f30 commit 7eb48b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terra_ltv_bot/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async def check_ltv_ratio(self) -> None:
ltvs = await asyncio.gather(*tasks)
for index, ltv in enumerate(ltvs):
address = addresses[index]
if ltv >= 35:
if ltv >= 45:
log.debug(f"{address.account_address} {ltv}% alerting")
await asyncio.gather(
*[
Expand Down

0 comments on commit 7eb48b5

Please sign in to comment.