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 e9c5d25 commit 6ff3a7bCopy full SHA for 6ff3a7b
src/test/integration/tests/ALM_Multi.t.sol
@@ -73,6 +73,7 @@ contract Integration_ALM_Multi is IntegrationCheckUtils {
73
/// forge-config: default.fuzz.runs = 3
74
/// forge-config: forktest.fuzz.runs = 3
75
function test_Multi(uint24 _r) public rand(_r) {
76
+ cheats.pauseGasMetering();
77
// Do 20 iterations
78
for (uint i = 1; i <= NUM_ITERATIONS; i++) {
79
console.log("%s: %d", "iter".green().italic(), i - 1);
@@ -87,6 +88,7 @@ contract Integration_ALM_Multi is IntegrationCheckUtils {
87
88
// Ensure all pending actions are completed for the next iteration
89
_rollForward_DeallocationDelay();
90
}
91
+ cheats.resumeGasMetering();
92
93
94
/// @dev NONE operators can:
0 commit comments