Skip to content

Commit

Permalink
fix(swingset): controller: enforce withSES==true
Browse files Browse the repository at this point in the history
  • Loading branch information
warner committed Mar 18, 2020
1 parent b481008 commit e4d9b04
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/SwingSet/src/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,9 @@ function buildNonSESKernel(endowments) {
}

export async function buildVatController(config, withSES = true, argv = []) {
if (!withSES) {
throw Error('SES is now mandatory');
}
// todo: move argv into the config

const endOfCrankHooks = new Set();
Expand Down

0 comments on commit e4d9b04

Please sign in to comment.