From 5ef95a57ee0704fbaa77267bec4782f7236be08b Mon Sep 17 00:00:00 2001 From: Sofianel5 Date: Thu, 14 Dec 2023 19:54:01 -0500 Subject: [PATCH] fix-import --- contracts/contracts/paymasters/PrivateMerklePaymaster.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/contracts/contracts/paymasters/PrivateMerklePaymaster.sol b/contracts/contracts/paymasters/PrivateMerklePaymaster.sol index 5e9724a..73d94a6 100644 --- a/contracts/contracts/paymasters/PrivateMerklePaymaster.sol +++ b/contracts/contracts/paymasters/PrivateMerklePaymaster.sol @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MIT pragma solidity ^0.8.18; +import { MerkleTreeWithHistory } from "./MerkleTreeWithHistory.sol"; import { ReentrancyGuard } from "@openzeppelin/contracts/security/ReentrancyGuard.sol"; abstract contract PrivateMerklePaymaster is MerkleTreeWithHistory, ReentrancyGuard {