Skip to content

Commit

Permalink
feat(E): . fixing E.js
Browse files Browse the repository at this point in the history
  • Loading branch information
zarutian committed Oct 12, 2020
1 parent b87d485 commit 4d57814
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/eventual-send/src/E.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function EsendOnlyProxyHandler(x, HandledPromise) {
return undefined;
};
},
apply(_target, _thisArg, argArray = []) {
apply(_target, _thisArg, argsArray = []) {
void HandledPromise.applyFunction(x, argsArray);
return undefined;
},
Expand Down Expand Up @@ -98,7 +98,7 @@ export default function makeE(HandledPromise) {
E.G = makeEGetterProxy;
E.resolve = HandledPromise.resolve;
E.sendOnly = (x) => {
const handler = EsendOnlyHandler(x, HandledPromise);
const handler = EsendOnlyProxyHandler(x, HandledPromise);
return harden(new Proxy(() => {}, handler));
};

Expand Down

0 comments on commit 4d57814

Please sign in to comment.