Skip to content

Commit

Permalink
chore: more clean ups
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris-Hibbert committed Dec 5, 2023
1 parent 7282f3c commit 07678cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/smart-wallet/src/smartWallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ export const prepareSmartWallet = (baggage, shared) => {
AmountShape,
M.remotable('InvitationMaker'),
M.or(M.record(), M.undefined()),
M.string(),
).returns(M.promise()),
purseForBrand: M.call(BrandShape).returns(M.promise()),
}),
Expand Down
4 changes: 3 additions & 1 deletion packages/swingset-liveslots/tools/fakeVirtualSupport.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,10 @@ export function makeFakeLiveSlotsStuff(options = {}) {
return exportID;
}

let nextPromiseID = 5;
function allocatePromiseID() {
const promiseID = vrm.allocateNextID('promiseID');
const promiseID = nextPromiseID;
nextPromiseID += 1;
return makeVatSlot('promise', true, promiseID);
}

Expand Down

0 comments on commit 07678cc

Please sign in to comment.