Skip to content

Commit

Permalink
Linter fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
arnabmitra committed Aug 15, 2023
1 parent 7da18de commit 5626317
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/contract/src/storage/loan_pool_collateral.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ pub fn remove(
storage: &mut dyn Storage,
collateral: &LoanPoolMarkerCollateral,
) -> Result<(), ContractError> {
Ok(COLLATERAL.remove(storage, collateral.marker_address.clone()))
COLLATERAL.remove(storage, collateral.marker_address.clone());
Ok(())
}

pub fn exists(storage: &dyn Storage, lp: Addr) -> bool {
Expand Down

0 comments on commit 5626317

Please sign in to comment.