generated from Kwenta/foundry-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π·π» ποΈ Remove increment from MarginPaymaster
- Loading branch information
1 parent
1431750
commit b76f381
Showing
2 changed files
with
1 addition
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,6 @@ import {console} from "forge-std/console.sol"; | |
/// @notice Responsible for paying tx gas fees using trader margin | ||
/// @author tommyrharper ([email protected]) | ||
contract MarginPaymaster is IPaymaster { | ||
uint256 public number; | ||
|
||
function validatePaymasterUserOp( | ||
UserOperation calldata, | ||
bytes32, | ||
|
@@ -27,8 +25,4 @@ contract MarginPaymaster is IPaymaster { | |
// assert(msg.sender == entryPoint) | ||
console.log("postOp"); | ||
} | ||
|
||
function increment() public { | ||
number++; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters