Skip to content

Commit 9058959

Browse files
authored
Update VestingWallet.sol
1 parent 47d73d1 commit 9058959

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

contracts/finance/VestingWallet.sol

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ pragma solidity ^0.8.20;
44

55
import {IERC20} from "../token/ERC20/IERC20.sol";
66
import {SafeERC20} from "../token/ERC20/utils/SafeERC20.sol";
7+
import {Math} from "../utils/math/Math.sol";
78
import {Address} from "../utils/Address.sol";
89
import {Context} from "../utils/Context.sol";
910
import {Ownable} from "../access/Ownable.sol";
@@ -33,6 +34,8 @@ import {Ownable} from "../access/Ownable.sol";
3334
* Consider disabling one of the withdrawal methods.
3435
*/
3536
contract VestingWallet is Context, Ownable {
37+
using Math for uint256;
38+
3639
event EtherReleased(uint256 amount);
3740
event ERC20Released(address indexed token, uint256 amount);
3841

0 commit comments

Comments
 (0)