Skip to content

Commit 553d565

Browse files
authored
Explicitly call Ownable constructor (#15)
1 parent 1c7eb30 commit 553d565

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Paymaster.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ contract Paymaster is BasePaymaster {
2323
uint256 private constant VALID_TIMESTAMP_OFFSET = 20;
2424
uint256 private constant SIGNATURE_OFFSET = VALID_TIMESTAMP_OFFSET + 64;
2525

26-
constructor(IEntryPoint _entryPoint, address _verifyingSigner) BasePaymaster(_entryPoint) {
26+
constructor(IEntryPoint _entryPoint, address _verifyingSigner) BasePaymaster(_entryPoint) Ownable() {
2727
require(_verifyingSigner != address(0), "Paymaster: verifyingSigner cannot be address(0)");
2828
require(_verifyingSigner != msg.sender, "Paymaster: verifyingSigner cannot be the owner");
2929
require(address(_entryPoint).code.length > 0, "Paymaster: passed _entryPoint is not currently a contract");

0 commit comments

Comments
 (0)