Skip to content

Commit

Permalink
task manager actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gmbronco committed Mar 6, 2024
1 parent 5fee973 commit 1fd3919
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tasks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ const jobsController = JobsController();
async function run(job: string = process.argv[2], chain: string = process.argv[3]) {
console.log('Running job', job, chain);

if (job === 'sync-pools-v3') {
if (job === 'add-pools-v3') {
return jobsController.addPools(chain);
} else if (job === 'sync-pools-v3') {
return jobsController.syncPools(chain);
} else if (job === 'sync-join-exits-v3') {
return jobsController.syncJoinExitsV3(chain);
Expand Down

0 comments on commit 1fd3919

Please sign in to comment.