Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rymnc committed Apr 26, 2024
1 parent d76f7d5 commit 47f2400
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion script/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@ contract Deploy is BaseScript {
// step 3: deploy WakuRln
wakuRln = new WakuRln(0, 20, address(verifier));
vm.stopBroadcast();

}
}
2 changes: 1 addition & 1 deletion src/WakuRln.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ contract WakuRln is RlnBase {
}

function register(uint16 storageIndex, uint256[] calldata commitments) public {
for (uint i = 0; i < commitments.length; i++) {
for (uint256 i = 0; i < commitments.length; i++) {
_register(commitments[i], 0);
}
}
Expand Down

0 comments on commit 47f2400

Please sign in to comment.