Skip to content

Commit

Permalink
chore: async call needs await
Browse files Browse the repository at this point in the history
Thanks for review, BW.
  • Loading branch information
dckc committed Jun 8, 2021
1 parent 8b6439f commit f2cb120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/SwingSet/src/kernel/vatManager/vat-warehouse.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export function makeVatWarehouse(kernelKeeper, vatLoader, policyOptions) {
};
ephemeral.vats.set(vatID, result);
// eslint-disable-next-line no-use-before-define
applyAvailabilityPolicy(vatID);
await applyAvailabilityPolicy(vatID);
return result;
}

Expand Down

0 comments on commit f2cb120

Please sign in to comment.