Skip to content

Commit

Permalink
style nit
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsoncusack committed Feb 5, 2024
1 parent abaaed3 commit 65b23b5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/examples/ERC4337/Paymaster.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ import {SharedVerifier} from "../SharedVerifier.sol";

/// @dev WARNING: This was written quickly with no tests, almost certainly has bugs
contract Paymaster {
enum PostOpMode {
opSucceeded,
opReverted,
postOpReverted
}

mapping(bytes32 => uint256) public castBalance;
mapping(uint256 => uint256) public fidBalance;

Expand Down Expand Up @@ -68,10 +74,4 @@ contract Paymaster {
fidBalance[identifier] += credit;
}
}

enum PostOpMode {
opSucceeded,
opReverted,
postOpReverted
}
}

0 comments on commit 65b23b5

Please sign in to comment.