We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 220c601 commit 0ed4dc1Copy full SHA for 0ed4dc1
protocol-units/settlement/mcr/contracts/test/MCR.t.sol
@@ -257,9 +257,11 @@ contract MCRTest is Test {
257
// dishonest signers
258
dishonestSigners.push(signer3);
259
260
- for (uint i = 0; i < 50; i++) {
+ uint reorgs = 50;
261
+ for (uint i = 0; i < reorgs; i++) {
262
- for(uint j = 0; j < 10; j++) {
263
+ uint commitmentHeights = 10;
264
+ for(uint j = 0; j < commitmentHeights; j++) {
265
266
uint256 blockHeight = i * 10 + j + 1;
267
blockTime += 1;
0 commit comments