Skip to content

Commit

Permalink
fix(zoe): missing arg guard startInstance
Browse files Browse the repository at this point in the history
  • Loading branch information
erights committed Dec 11, 2023
1 parent 9c3ea26 commit b7ed892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/zoe/src/typeGuards.js
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit b7ed892

Please sign in to comment.