Skip to content

Commit

Permalink
style: format code with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
cedoor committed Sep 9, 2022
1 parent 3495e14 commit aa01cd1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion contracts/extensions/SemaphoreVoting.sol
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ contract SemaphoreVoting is ISemaphoreVoting, SemaphoreCore, SemaphoreGroups {
address coordinator,
uint256 merkleTreeDepth
) public override {
require(address(verifiers[merkleTreeDepth]) != address(0), "SemaphoreVoting: Merkle tree depth value is not supported");
require(
address(verifiers[merkleTreeDepth]) != address(0),
"SemaphoreVoting: Merkle tree depth value is not supported"
);

_createGroup(pollId, merkleTreeDepth, 0);

Expand Down

0 comments on commit aa01cd1

Please sign in to comment.