diff --git a/packages/boot/test/bootstrapTests/test-orchestration.ts b/packages/boot/test/bootstrapTests/test-orchestration.ts index 6a9ff4f6f5db..f1ab0b27b209 100644 --- a/packages/boot/test/bootstrapTests/test-orchestration.ts +++ b/packages/boot/test/bootstrapTests/test-orchestration.ts @@ -140,7 +140,7 @@ test.serial('stakeAtom - smart wallet', async t => { invitationSpec: { source: 'agoricContract', instancePath: ['stakeAtom'], - callPipe: [['makeMakeAccountInvitation']], + callPipe: [['makeAcountInvitationMaker']], }, proposal: {}, }); diff --git a/packages/orchestration/src/examples/stakeAtom.contract.js b/packages/orchestration/src/examples/stakeAtom.contract.js index 0b9baaafeae2..ca885cb12a09 100644 --- a/packages/orchestration/src/examples/stakeAtom.contract.js +++ b/packages/orchestration/src/examples/stakeAtom.contract.js @@ -70,14 +70,14 @@ export const start = async (zcf, privateArgs, baggage) => { 'StakeAtom', M.interface('StakeAtomI', { makeAccount: M.callWhen().returns(M.remotable('ChainAccount')), - makeMakeAccountInvitation: M.call().returns(M.promise()), + makeAcountInvitationMaker: M.call().returns(M.promise()), }), { async makeAccount() { trace('makeAccount'); return makeAccount().then(({ account }) => account); }, - makeMakeAccountInvitation() { + makeAcountInvitationMaker() { trace('makeCreateAccountInvitation'); return zcf.makeInvitation( async seat => {