feat: Add BytecodeExporter to TestUtils

Add example usage for BalancerV2

Took 2 hours 27 minutes


Took 10 seconds
This commit is contained in:
Diana Carvalho
2025-08-21 16:59:26 +01:00
parent cc9801ff91
commit cea964e0a5
3 changed files with 28 additions and 1 deletions

View File

@@ -134,4 +134,9 @@ contract BalancerV2ExecutorTest is Constants, TestUtils {
assertGt(balanceAfter, balanceBefore);
assertEq(balanceAfter - balanceBefore, amountOut);
}
function testExportContract() public {
vm.skip(true);
exportRuntimeBytecode(address(balancerV2Exposed), "BalancerV2");
}
}