Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Jouzo committed Sep 13, 2024
1 parent bbf4e59 commit 28879ea
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/ain-ocean/src/api/loan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -532,9 +532,8 @@ async fn list_vault_auction_history(
Ok(None) => Some(Err(NotFoundSnafu {
kind: NotFoundKind::Auction,
}
.build()
.into())),
Err(e) => Some(Err(e.into())),
.build())),
Err(e) => Some(Err(e)),
}
}
Ok(_) => None,
Expand Down

0 comments on commit 28879ea

Please sign in to comment.