Skip to content

Commit

Permalink
Merge pull request #27 from hyperoracle/dev
Browse files Browse the repository at this point in the history
chore: fix typecheck
  • Loading branch information
murongg authored Dec 7, 2023
2 parents a647245 + fd8e65e commit 3bab22f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/zkgraph-cli/src/commands/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export async function setup(options: SetupOptions) {

logger.info('[+] Transaction Confirmed. Creating Setup Task')
const data = await dispatcher.queryTask(txhash)
const taskId = data.task.id
const taskId = data.task?.id
if (!taskId) {
logger.error('[+] SETUP TASK FAILED. \n')
return
Expand Down

0 comments on commit 3bab22f

Please sign in to comment.