From b7ed8926625d92a26ac8ca012df1f9ee73a4a4e9 Mon Sep 17 00:00:00 2001 From: "Mark S. Miller" Date: Sun, 10 Dec 2023 20:12:53 -0800 Subject: [PATCH] fix(zoe): missing arg guard startInstance --- packages/zoe/src/typeGuards.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/zoe/src/typeGuards.js b/packages/zoe/src/typeGuards.js index afa962b5922e..50b831a1f3eb 100644 --- a/packages/zoe/src/typeGuards.js +++ b/packages/zoe/src/typeGuards.js @@ -327,7 +327,7 @@ export const ZoeServiceI = M.interface('ZoeService', { install: M.call(M.any()).optional(M.string()).returns(M.promise()), installBundleID: M.call(M.string()).optional(M.string()).returns(M.promise()), startInstance: M.call(M.eref(InstallationShape)) - .optional(IssuerPKeywordRecordShape, M.any(), M.any()) + .optional(IssuerPKeywordRecordShape, M.any(), M.any(), M.string()) .returns(M.promise()), offer: M.call(M.eref(InvitationShape)) .optional(ProposalShape, PaymentPKeywordRecordShape, M.any())