We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f834a9 commit 216a12cCopy full SHA for 216a12c
src/deploy/002_settlement.ts
@@ -46,7 +46,9 @@ const deploySettlement: DeployFunction = async function ({
46
>;
47
const vaultDeployment = vaultNetworks[chainId];
48
if (vaultDeployment === undefined) {
49
- throw new Error(`Vault not deployed on chain ${chainId}. Get the balancer address from the balancer team and add it to the networks.json file`);
+ throw new Error(
50
+ `Vault not deployed on chain ${chainId}. Get the balancer address from the balancer team and add it to the networks.json file`,
51
+ );
52
}
53
54
vaultAddress = vaultDeployment.address;
0 commit comments