Skip to content

Commit

Permalink
fixup! feat: zoeTools.withdrawToSeat
Browse files Browse the repository at this point in the history
  • Loading branch information
0xpatrickdev committed Sep 12, 2024
1 parent 11a12da commit a33514c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { makeSharedStateRecord } from '@agoric/async-flow';
import { InvitationShape } from '@agoric/zoe/src/typeGuards.js';
import { E } from '@endo/far';
import { M } from '@endo/patterns';
import { withOrchestration } from '../utils/start-helper.js';
import { prepareChainHubAdmin } from '../exos/chain-hub-admin.js';
import { withOrchestration } from '../../src/utils/start-helper.js';
import { prepareChainHubAdmin } from '../../src/exos/chain-hub-admin.js';
import * as flows from './zoe-tools.flows.js';
import fetchedChainInfo from '../fetched-chain-info.js';
import fetchedChainInfo from '../../src/fetched-chain-info.js';

const { values } = Object;

Expand All @@ -17,7 +17,7 @@ const { values } = Object;
* @import {Zone} from '@agoric/zone';
* @import {AssetInfo} from '@agoric/vats/src/vat-bank.js';
* @import {CosmosInterchainService} from '@agoric/orchestration';
* @import {OrchestrationTools} from '../utils/start-helper.js';
* @import {OrchestrationTools} from '../../src/utils/start-helper.js';
*/

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { makeError } from '@endo/errors';
import { mustMatch } from '@endo/patterns';
import { ChainAddressShape } from '../typeGuards.js';
import { ChainAddressShape } from '../../src/typeGuards.js';

const { values } = Object;

/**
* @import {GuestInterface} from '@agoric/async-flow';
* @import {Orchestrator, LocalAccountMethods, OrchestrationAccountI, OrchestrationFlow, ChainAddress} from '@agoric/orchestration';
* @import {ZoeTools} from '../utils/zoe-tools.js';
* @import {ZoeTools} from '../../src/utils/zoe-tools.js';
*/

/**
Expand Down
4 changes: 2 additions & 2 deletions packages/orchestration/test/utils/zoe-tools.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import { commonSetup } from '../supports.js';
const dirname = path.dirname(new URL(import.meta.url).pathname);

const contractName = 'zoeTools';
const contractFile = `${dirname}/../../src/fixtures/zoe-tools.contract.js`;
type StartFn = typeof import('../../src/fixtures/zoe-tools.contract.js').start;
const contractFile = `${dirname}/../../test/fixtures/zoe-tools.contract.js`;
type StartFn = typeof import('../../test/fixtures/zoe-tools.contract.js').start;

type TestContext = Awaited<ReturnType<typeof commonSetup>> & {
brands: Awaited<ReturnType<typeof commonSetup>>['brands'] & {
Expand Down

0 comments on commit a33514c

Please sign in to comment.