From f138abe87bb19219a8355aa34a484be8a16637a5 Mon Sep 17 00:00:00 2001 From: goofylfg <165781272+goofylfg@users.noreply.github.com> Date: Fri, 10 May 2024 07:09:32 +0000 Subject: [PATCH] chore: remove duplicate words --- cli/ts/utils/storage.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/ts/utils/storage.ts b/cli/ts/utils/storage.ts index e16938594d..b905fdf3ce 100644 --- a/cli/ts/utils/storage.ts +++ b/cli/ts/utils/storage.ts @@ -40,7 +40,7 @@ export const storeContractAddress = (contractName: string, address: string, netw /** * Read a contract address from the local address store file * @param contractName - the name of the contract - * @returns the contract address or a undefined it it does not exist + * @returns the contract address or a undefined if it does not exist */ export const readContractAddress = (contractName: string, network = "default"): string => { try { @@ -51,7 +51,7 @@ export const readContractAddress = (contractName: string, network = "default"): }; /** - * Delete the content of the contract address file file + * Delete the content of the contract address file */ export const resetContractAddresses = (): void => { fs.writeFileSync(contractAddressesStore, JSON.stringify({}, null, 4));