From 4ce81640c4935c26e44e883d35d48b7921542d28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ernesto=20Garc=C3=ADa?= Date: Fri, 4 Aug 2023 15:06:15 -0600 Subject: [PATCH] Update contracts/finance/VestingWallet.sol --- contracts/finance/VestingWallet.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/finance/VestingWallet.sol b/contracts/finance/VestingWallet.sol index abe7472714d..1edb0113ef0 100644 --- a/contracts/finance/VestingWallet.sol +++ b/contracts/finance/VestingWallet.sol @@ -19,7 +19,7 @@ import {Ownable} from "../access/Ownable.sol"; * By setting the duration to 0, one can configure this contract to behave like an asset timelock that hold tokens for * a beneficiary until a specified time. * - * NOTE: Since the wallet is ownable, and ownership can be transferred, it is possible to sell unvested tokens. + * NOTE: Since the wallet is {Ownable}, and ownership can be transferred, it is possible to sell unvested tokens. * Preventing this in a smart contract is difficult, considering that: 1) a beneficiary address could be a * counterfactually deployed contract, 2) there is likely to be a migration path for EOAs to become contracts in the * near future.