Skip to content

Commit

Permalink
fixup! feat: examples/auto-stake-it.contract.js
Browse files Browse the repository at this point in the history
  • Loading branch information
0xpatrickdev committed Jul 17, 2024
1 parent 881cf15 commit 5061f11
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions packages/builders/scripts/testing/start-auto-stake-it.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import { makeTracer } from '@agoric/internal';
import { makeStorageNodeChild } from '@agoric/internal/src/lib-chainStorage.js';
import { E } from '@endo/far';
import { deeplyFulfilled } from '@endo/marshal';

/**
* @import {AutoStakeItSF} from '@agoric/orchestration/src/examples/auto-stake-it.contract.js';
Expand Down Expand Up @@ -49,14 +48,14 @@ export const startAutoStakeIt = async ({
label: 'autoAutoStakeIt',
installation,
terms: undefined,
privateArgs: await deeplyFulfilled({
agoricNames,
orchestrationService: cosmosInterchainService,
localchain,
privateArgs: {
agoricNames: await agoricNames,
orchestrationService: await cosmosInterchainService,
localchain: await localchain,
storageNode,
marshaller,
timerService: chainTimerService,
}),
timerService: await chainTimerService,
},
};

const { instance } = await E(startUpgradable)(startOpts);
Expand Down

0 comments on commit 5061f11

Please sign in to comment.