Skip to content

Commit

Permalink
fix(liquidationVisibility): lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge-Lopes committed Feb 5, 2024
1 parent 85be442 commit 48aaa38
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/inter-protocol/src/vaultFactory/vaultManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {
NotifierShape,
RatioShape,
} from '@agoric/ertp';
import { allValuesSettled, makeTracer } from "@agoric/internal";
import { allValuesSettled, makeTracer } from '@agoric/internal';
import { makeStoredNotifier, observeNotifier } from '@agoric/notifier';
import { appendToStoredArray } from '@agoric/store/src/stores/store-utils.js';
import {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,12 @@ test('liq-rejected-timestampStorageNode', async t => {
await assertVaultCollateral(t, vault, 0n);
await assertVaultCurrentDebt(t, vault, wantMinted);

const currentTime = await setClockAndAdvanceNTimes(manualTimer, 2, startTime, 2n);
const currentTime = await setClockAndAdvanceNTimes(
manualTimer,
2,
startTime,
2n,
);
trace(`advanced time to `, currentTime);

await assertVaultState(t, vaultNotifier, 'liquidated');
Expand Down

0 comments on commit 48aaa38

Please sign in to comment.