Skip to content

Commit

Permalink
Update lib.rs
Browse files Browse the repository at this point in the history
linting
  • Loading branch information
Teolhyn authored Jul 16, 2024
1 parent ccb4ca0 commit d53b6f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/loan/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ pub trait LoanTrait {
pool: Address,
collateral: Address,
amount: i128,
collateral_amount: i128
collateral_amount: i128,
);
}

Expand All @@ -105,7 +105,7 @@ impl LoanTrait for LoanContract {
pool: Address,
collateral: Address,
amount: i128,
collateral_amount: i128
collateral_amount: i128,
) {
// TODO: Check that collateral amount is large enough to allow initialization.
// TODO: Currently it is most likely possible to create a loan for someone else. This needs to be fixed with authentication.
Expand Down

0 comments on commit d53b6f6

Please sign in to comment.