Skip to content

Commit c95282e

Browse files
committed
fix: shuffle around exports
1 parent 1a61a04 commit c95282e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/captp/lib/captp.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
// This logic was mostly lifted from @agoric/swingset-vat liveSlots.js
44
// Defects in it are mfig's fault.
55
import { Remotable, makeMarshal, QCLASS } from '@agoric/marshal';
6-
import { HandledPromise } from '@agoric/eventual-send';
6+
import { E, HandledPromise } from '@agoric/eventual-send';
77
import { isPromise } from '@agoric/produce-promise';
88

9+
export { E, HandledPromise };
10+
911
export function makeCapTP(ourId, rawSend, bootstrapObj = undefined) {
1012
let unplug = false;
1113
function send(...args) {

packages/captp/lib/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import Nat from '@agoric/nat';
22

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

65
export * from './captp';

0 commit comments

Comments
 (0)