Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(swingset): improve vat deliveries #4716

Merged
merged 2 commits into from
Mar 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/SwingSet/src/controller/initializeSwingset.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { resolve as resolveModuleSpecifier } from 'import-meta-resolve';
import { assert, details as X } from '@agoric/assert';
import bundleSource from '@endo/bundle-source';

import '../types.js';
import '../types-ambient.js';
import { insistStorageAPI } from '../lib/storageAPI.js';
import { initializeKernel } from './initializeKernel.js';
import { kdebugEnable } from '../lib/kdebug.js';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ bundleID before submitting to the kernel), or (temporarily) a full bundle.
/**
* if you're into types, this might loosely describe devices.vatAdmin
*
* @typedef { import('../../types-exported.js').BundleID } BundleID
* @typedef { import('../../types-external.js').BundleID } BundleID
*
* @typedef { string } MeterID
* @typedef { string } VatID
Expand Down
2 changes: 1 addition & 1 deletion packages/SwingSet/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ export { default as buildCommand } from './devices/command/command.js';
export { buildPlugin } from './devices/plugin/plugin.js';

// eslint-disable-next-line import/export
export * from './types-exported.js';
export * from './types-external.js';
2 changes: 1 addition & 1 deletion packages/SwingSet/src/kernel/deviceManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { assert } from '@agoric/assert';
import { makeDeviceSlots } from './deviceSlots.js';
import { insistCapData } from '../lib/capdata.js';

import '../types.js';
import '../types-ambient.js';

/* The DeviceManager is much simpler than the VatManager, because the feature
* set is smaller:
Expand Down
Loading