Skip to content

Commit

Permalink
fix: validation failed constant
Browse files Browse the repository at this point in the history
  • Loading branch information
kopy-kat committed Feb 23, 2024
1 parent 4a1da43 commit 727ede4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/modulekit/src/modules/ERC7579ValidatorMaster.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { ERC7579ModuleBase } from "./ERC7579ModuleBase.sol";
abstract contract ERC7579ValidatorBase is ERC7579ModuleBase {
type ValidationData is uint256;

ValidationData internal constant VALIDATION_FAILED = ValidationData.wrap(0);
ValidationData internal constant VALIDATION_FAILED = ValidationData.wrap(1);
bytes4 internal constant EIP1271_SUCCESS = 0x1626ba7e;
bytes4 internal constant EIP1271_FAILED = 0xFFFFFFFF;

Expand Down

0 comments on commit 727ede4

Please sign in to comment.