Skip to content

Commit

Permalink
Merge pull request #136 from worldcoin/kit/fix-validation-data
Browse files Browse the repository at this point in the history
fix(contracts): Fix order of arguments when initializing `ValidationData`
  • Loading branch information
0xKitsune authored Jan 16, 2025
2 parents 69ecd00 + 6d8ef27 commit 5515c85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/src/PBH4337Module.sol
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,6 @@ contract PBHSafe4337Module is Safe4337Module {
}

// The timestamps are validated by the entry point, therefore we will not check them again.
validationData = _packValidationData(ValidationData(authorizer, validUntil, validAfter));
validationData = _packValidationData(ValidationData(authorizer, validAfter, validUntil));
}
}

0 comments on commit 5515c85

Please sign in to comment.