Skip to content

Commit 9400b26

Browse files
committed
update
1 parent 39c9b63 commit 9400b26

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

contract_manager/scripts/common.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export interface BaseDeployConfig {
2222
// Deploys a contract if it was not deployed before.
2323
// It will check for the past deployments in file `cacheFile` against a key
2424
// If `cacheKey` is provided it will be used as the key, else it will use
25-
// a - `${chain.getId()}-${artifactName}`
25+
// a key of the form `${chain.getId()}-${artifactName}`
2626
export async function deployIfNotCached(
2727
cacheFile: string,
2828
chain: EvmChain,
@@ -56,6 +56,7 @@ export async function deployIfNotCached(
5656
bytecode = `0x${bytecode}`;
5757
}
5858

59+
console.log("deploying", artifactName, "on", chain.getId());
5960
const addr = await chain.deploy(
6061
config.privateKey,
6162
artifact["abi"],

0 commit comments

Comments
 (0)