diff --git a/hardhat-scripts/deploy-strategy.ts b/hardhat-scripts/deploy-strategy.ts index df9d51b8..051b21b8 100644 --- a/hardhat-scripts/deploy-strategy.ts +++ b/hardhat-scripts/deploy-strategy.ts @@ -44,7 +44,7 @@ async function checkUnderlyingVaultAsset( ); const underlyingAsset = await vault.asset(); if (underlyingAsset.toLowerCase() !== asset.toLowerCase()) { - throw new Error("Underlying asset does not match asset"); + throw new Error(`Underlying asset (${underlyingAsset}) does not match asset (${asset})`); } }