Skip to content

Commit

Permalink
lint: prettier ignore empty blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
jordaniza committed Mar 7, 2024
1 parent 9f39cad commit a76ae73
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/contracts/deploy/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ export async function getContractAddress(
if (contract) {
return contract.address;
}
} catch (e) {}
} catch (e) {
// prettier-ignore
}

try {
if (!hre.testingFork.osxVersion && !hre.testingFork.activeContracts) {
Expand All @@ -113,7 +115,9 @@ export async function getContractAddress(
if (activeContracts && activeContracts[networkName][contractName]) {
return activeContracts[networkName][contractName];
}
} catch (e) {}
} catch (e) {
// prettier-ignore
}

return getLatestContractAddress(contractName, hre);
}
Expand Down

0 comments on commit a76ae73

Please sign in to comment.