Skip to content

Commit

Permalink
fix: shuffle around exports
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Jul 29, 2020
1 parent 1a61a04 commit c95282e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/captp/lib/captp.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
// This logic was mostly lifted from @agoric/swingset-vat liveSlots.js
// Defects in it are mfig's fault.
import { Remotable, makeMarshal, QCLASS } from '@agoric/marshal';
import { HandledPromise } from '@agoric/eventual-send';
import { E, HandledPromise } from '@agoric/eventual-send';
import { isPromise } from '@agoric/produce-promise';

export { E, HandledPromise };

export function makeCapTP(ourId, rawSend, bootstrapObj = undefined) {
let unplug = false;
function send(...args) {
Expand Down
1 change: 0 additions & 1 deletion packages/captp/lib/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import Nat from '@agoric/nat';

export * from '@agoric/eventual-send';
export * from '@agoric/marshal';

export * from './captp';
Expand Down

0 comments on commit c95282e

Please sign in to comment.