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

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgoth committed Nov 19, 2021
1 parent 82db976 commit bf7ac19
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/dai-plugin-liquidations/src/LiquidationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,9 @@ export default class LiquidationService extends PublicService {
return this._clipperContractByIlk(ilk)
.sales(id)
.then(s => {
const tic = new Date(new BigNumber(s.tic._hex).times(1000).toNumber());
const tic = new Date(
new BigNumber(s.tic._hex).times(1000).toNumber()
);
const obj = {
tic,
created: tic,
Expand Down

0 comments on commit bf7ac19

Please sign in to comment.