Skip to content

Commit

Permalink
fixup! chore: punt on exo for zcfTools
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc committed Sep 19, 2024
1 parent 9a5964c commit 229c605
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 14 deletions.
2 changes: 1 addition & 1 deletion packages/orchestration/src/utils/start-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { prepareOrchestrator } from '../exos/orchestrator.js';
import { prepareRemoteChainFacade } from '../exos/remote-chain-facade.js';
import { makeOrchestrationFacade } from '../facade.js';
import { makeZoeTools } from './zoe-tools.js';
import { makeZcfTools } from '../exos/zcf-tools.js';
import { makeZcfTools } from './zcf-tools.js';

/**
* @import {LocalChain} from '@agoric/vats/src/localchain.js';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,6 @@ import { VowShape } from '@agoric/vow';

import { M } from '@endo/patterns';

export const ZcfToolsI = M.interface(
'ZCF',
{
makeInvitation: M.call(M.remotable('OfferHandler'), M.string())
.optional(M.record(), M.pattern())
.returns(VowShape),
},
{
defaultGuards: 'passable',
},
);

/**
* @param {ZCF} zcf
* @param {VowTools} vowTools
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { makeNodeBundleCache } from '@endo/bundle-source/cache.js';
import { E, Far } from '@endo/far';
import type { TestFn } from 'ava';
import { createRequire } from 'node:module';
import { makeZcfTools } from '../../src/exos/zcf-tools.js';
import { makeZcfTools } from '../../src/utils/zcf-tools.js';
import { provideDurableZone } from '../supports.js';

const nodeRequire = createRequire(import.meta.url);
Expand Down

0 comments on commit 229c605

Please sign in to comment.