Skip to content

Commit

Permalink
chore: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
nvtaveras committed Aug 1, 2024
1 parent 0e8e794 commit f5df43a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/utils/get-time-lock-id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ async function getTransactionReceiptAndDecodeLogs(

console.log("Decoded event log", decodedLog);

// @ts-ignore
const { targets, values, calldatas, description } = decodedLog.args;
const descriptionHash = keccak256(Buffer.from(description));

Expand Down Expand Up @@ -75,4 +74,6 @@ async function main() {
await getTransactionReceiptAndDecodeLogs(client, TX_HASH);
}

main().then(() => {});
main().catch((error: unknown) => {
console.error("Error while getting time-lock id", error);
});

0 comments on commit f5df43a

Please sign in to comment.