Skip to content

Commit

Permalink
chore: fix the lint
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Jul 29, 2020
1 parent 274ed53 commit 1a61a04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
5 changes: 1 addition & 4 deletions packages/captp/lib/captp.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@
// 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 Nat from '@agoric/nat';
import { HandledPromise, E } from '@agoric/eventual-send';
import { HandledPromise } from '@agoric/eventual-send';
import { isPromise } from '@agoric/produce-promise';

export { E, HandledPromise, Nat };

export function makeCapTP(ourId, rawSend, bootstrapObj = undefined) {
let unplug = false;
function send(...args) {
Expand Down
3 changes: 1 addition & 2 deletions packages/captp/lib/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import harden from '@agoric/harden';
import Nat from '@agoric/nat';

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

export * from './captp';
export { harden, Nat };
export { Nat };

0 comments on commit 1a61a04

Please sign in to comment.