Skip to content

Commit

Permalink
fix: use variable declared
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bisonai committed Mar 15, 2024
1 parent 824447b commit 333d629
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/src/adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export function hashHandler() {
console.error('Adapter hash could not be computed. Reason:')
const errMsg = e?.response?.data ? e.response.data : e.message

console.error(e.response.data)
console.error(errMsg)
return errMsg
}
}
Expand Down
2 changes: 1 addition & 1 deletion cli/src/aggregator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export function hashHandler() {
console.error('Aggregator hash could not be computed. Reason:')
const errMsg = e?.response?.data ? e.response.data : e.message

console.error(e.response.data)
console.error(errMsg)
return errMsg
}
}
Expand Down

0 comments on commit 333d629

Please sign in to comment.