From 842e0f1a894c36a7e09330269ad62b7ed3e9b476 Mon Sep 17 00:00:00 2001 From: Roman Date: Thu, 9 Oct 2025 14:38:33 +1100 Subject: [PATCH] fix: line length --- test/WakuRlnV2.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/WakuRlnV2.t.sol b/test/WakuRlnV2.t.sol index af9cd44..7596b13 100644 --- a/test/WakuRlnV2.t.sol +++ b/test/WakuRlnV2.t.sol @@ -1712,7 +1712,7 @@ contract WakuRlnV2Test is Test { vm.startPrank(user); token.approve(address(w), price); uint256 newId = - 100 + uint256(keccak256(abi.encodePacked("new", reuser, block.timestamp, i))) % (w.Q() - 1) + 1; // Better + 100 + uint256(keccak256(abi.encodePacked("new", reuser, block.timestamp, i))) % (w.Q() - 1) + 1; // uniqueness w.register(newId, rateLimit, new uint256[](0)); vm.stopPrank();