Skip to content

Commit ebeffed

Browse files
committed
fix: minor fixes (2)
1 parent bedcadf commit ebeffed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/fuzz/ProofOfPassportRegisterHandler.t.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ contract ProofOfPassportRegisterHandler is Test, TestCodeConstants, CodeConstant
1212
ProofOfPassportRegister s_register;
1313
address[][] private s_registeredAddresses = new address[][](5);
1414

15-
constructor(ProofOfPassportRegister register) {
16-
s_register = register;
17-
}
18-
1915
modifier notAlreadyRegisteredVerifier(uint256 signatureAlgorithm) {
2016
if (signatureAlgorithm == 1 || signatureAlgorithm == 3 || signatureAlgorithm == 4) {
2117
return;
2218
}
2319
_;
2420
}
2521

22+
constructor(ProofOfPassportRegister register) {
23+
s_register = register;
24+
}
25+
2626
function registerProof(address recipient, uint256 signatureAlgorithmSeed) public {
2727
if (recipient == address(0)) {
2828
return;

0 commit comments

Comments
 (0)