From 744472665d8558fad20c3ac228901049cc887fc5 Mon Sep 17 00:00:00 2001 From: Sofianel5 Date: Thu, 14 Dec 2023 20:04:23 -0500 Subject: [PATCH] fix-placeholders --- contracts/contracts/paymasters/PrivateMerklePaymaster.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/contracts/paymasters/PrivateMerklePaymaster.sol b/contracts/contracts/paymasters/PrivateMerklePaymaster.sol index d6d28e7..63c73e5 100644 --- a/contracts/contracts/paymasters/PrivateMerklePaymaster.sol +++ b/contracts/contracts/paymasters/PrivateMerklePaymaster.sol @@ -29,7 +29,7 @@ abstract contract PrivateMerklePaymaster is MerkleTreeWithHistory, ReentrancyGua IVerifier _verifier2, uint32 _levels, address _hasher, - address token + address _token ) MerkleTreeWithHistory(_levels, _hasher) { @@ -56,7 +56,7 @@ abstract contract PrivateMerklePaymaster is MerkleTreeWithHistory, ReentrancyGua } } - function createDeposit(commitment1, commitment2) internal { + function createDeposit(bytes32 commitment1, bytes32 commitment2) internal { }