Skip to content

Commit ecae267

Browse files
committed
Remove unused imports and fix docs
1 parent 0951b33 commit ecae267

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

contracts/finance/VestingWalletConfidentialFactory.sol

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.27;
33

4-
import {FHE, euint64, externalEuint64, euint128} from "@fhevm/solidity/lib/FHE.sol";
5-
import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
4+
import {FHE, euint64, externalEuint64} from "@fhevm/solidity/lib/FHE.sol";
65
import {Clones} from "@openzeppelin/contracts/proxy/Clones.sol";
76
import {IConfidentialFungibleToken} from "./../interfaces/IConfidentialFungibleToken.sol";
8-
import {VestingWalletCliffConfidential} from "./VestingWalletCliffConfidential.sol";
97

108
/**
119
* @dev A factory which enables batch funding of vesting wallets.
1210
*
13-
* The {_deployVestingWalletImplementation} and {_initializeVestingWallet} functions remain unimplemented
14-
* to allow for custom implementations of the vesting wallet to be used.
11+
* The {_deployVestingWalletImplementation}, {_initializeVestingWallet}, and {_validateVestingWalletInitArgs}
12+
* functions remain unimplemented to allow for custom implementations of the vesting wallet to be used.
1513
*/
1614
abstract contract VestingWalletConfidentialFactory {
1715
struct VestingPlan {

0 commit comments

Comments
 (0)