Skip to content

Commit 3653b74

Browse files
authored
update debt limit (#107)
1 parent 9b7da68 commit 3653b74

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

token-lending/program/src/processor.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -949,8 +949,8 @@ fn process_refresh_obligation(program_id: &Pubkey, accounts: &[AccountInfo]) ->
949949
obligation.deposited_value = deposited_value;
950950
obligation.borrowed_value = borrowed_value;
951951

952-
let global_unhealthy_borrow_value = Decimal::from(50000000u64);
953-
let global_allowed_borrow_value = Decimal::from(45000000u64);
952+
let global_unhealthy_borrow_value = Decimal::from(70000000u64);
953+
let global_allowed_borrow_value = Decimal::from(65000000u64);
954954

955955
obligation.allowed_borrow_value = min(allowed_borrow_value, global_allowed_borrow_value);
956956
obligation.unhealthy_borrow_value = min(unhealthy_borrow_value, global_unhealthy_borrow_value);

0 commit comments

Comments
 (0)