From 5772696044a4ad1d17f4f1d8265fda7e95ef28f5 Mon Sep 17 00:00:00 2001 From: Tim Olson <> Date: Wed, 27 Dec 2023 16:35:16 -0400 Subject: [PATCH] bugfix: vault creation loop --- vault.js | 1 + 1 file changed, 1 insertion(+) diff --git a/vault.js b/vault.js index ceed8a8..7dded85 100644 --- a/vault.js +++ b/vault.js @@ -96,6 +96,7 @@ async function createVault(chainId, owner, num) { const signer = getSigner(chainId); const deployer = new ethers.Contract(chainInfo[chainId].factory, factoryAbi, signer) const vaultAddr = vaultAddress(chainId, owner, num) + console.log(' ==>', vaultAddr ) try { const tx = await deployer.deployVault(owner, num) // console.log(`deploying vault for ${owner} #${num} with tx ${tx.hash}`)