Skip to content

Commit

Permalink
fixup! 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 3f568f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
*/
import { InvitationShape } from '@agoric/zoe/src/typeGuards.js';
import { M } from '@endo/patterns';
import { withOrchestration } from '../utils/start-helper.js';
import { withOrchestration } from '../../src/utils/start-helper.js';
import * as flows from './query-flows.flows.js';

/**
* @import {Zone} from '@agoric/zone';
* @import {OrchestrationPowers} from '..//utils/start-helper.js';
* @import {OrchestrationTools} from '../utils/start-helper.js';
* @import {OrchestrationPowers} from '../../src/utils/start-helper.js';
* @import {OrchestrationTools} from '../../src/utils/start-helper.js';
*/

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ import {
const dirname = path.dirname(new URL(import.meta.url).pathname);

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

type TestContext = Awaited<ReturnType<typeof commonSetup>> & {
zoe: ZoeService;
Expand Down

0 comments on commit 3f568f1

Please sign in to comment.