Skip to content

Commit

Permalink
fix(gimix): fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
erights committed Nov 15, 2023
1 parent fc47827 commit b7e8423
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/zoe/src/contracts/gimix/gimix.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
provideDurableMapStore,
} from '@agoric/vat-data';
import { AmountMath, AmountShape } from '@agoric/ertp';
import { OfferHandlerI } from '../../typeGuards';
import { OfferHandlerI } from '../../typeGuards.js';
import {
DeliverProposalShape,
JobReportProposalShape,
Expand Down
13 changes: 7 additions & 6 deletions packages/zoe/test/unitTests/contracts/gimix/test-gimix.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,20 @@
import { test as anyTest } from '../../../../tools/prepare-test-env-ava.js';

import url from 'url';
import { unsafeMakeBundleCache } from '@agoric/swingset-vat/tools/bundleTool.js';
import { makeZoeKitForTest } from '@agoric/zoe/tools/setup-zoe.js';
import { E, Far } from '@endo/far';
import { makeCopyBag } from '@endo/patterns';
import { makePromiseKit } from '@endo/promise-kit';

import { unsafeMakeBundleCache } from '@agoric/swingset-vat/tools/bundleTool.js';
import { AmountMath } from '@agoric/ertp/src/amountMath.js';
import { makeFakeStorageKit } from '@agoric/internal/src/storage-test-utils.js';
import { makeCopyBag } from '@endo/patterns';
import { makeNameHubKit } from '@agoric/vats';
import buildManualTimer from '../../../../tools/manualTimer.js';
import centralSupplyBundle from '@agoric/vats/bundles/bundle-centralSupply.js';
import { TimeMath } from '@agoric/time';

import { makeZoeKitForTest } from '../../../../tools/setup-zoe.js';
import buildManualTimer from '../../../../tools/manualTimer.js';
import { mintStablePayment } from './mintStable.js';
import { makePromiseKit } from '@endo/promise-kit';
import { TimeMath } from '@agoric/time';

const DAY = 24 * 60 * 60 * 1000;
const UNIT6 = 1_000_000n;
Expand Down

0 comments on commit b7e8423

Please sign in to comment.