From 65b75386e4bf0c3718456afcb4ff5f391d2d8be1 Mon Sep 17 00:00:00 2001 From: owen05 Date: Thu, 4 Feb 2021 10:47:31 +0800 Subject: [PATCH] wait to freeze --- contracts/DODOToken/DODOCirculationHelper.sol | 6 ------ contracts/DODOToken/vDODOToken.sol | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/contracts/DODOToken/DODOCirculationHelper.sol b/contracts/DODOToken/DODOCirculationHelper.sol index 1601925..3370127 100644 --- a/contracts/DODOToken/DODOCirculationHelper.sol +++ b/contracts/DODOToken/DODOCirculationHelper.sol @@ -12,12 +12,6 @@ import {SafeMath} from "../lib/SafeMath.sol"; import {DecimalMath} from "../lib/DecimalMath.sol"; import {InitializableOwnable} from "../lib/InitializableOwnable.sol"; -interface IDODOCirculationHelper { - // Locked vDOOD not counted in circulation - function getCirculation() external returns (uint256); - - function getVDODOWithdrawFeeRatio() external returns (uint256); -} contract DODOCirculationHelper is InitializableOwnable { using SafeMath for uint256; diff --git a/contracts/DODOToken/vDODOToken.sol b/contracts/DODOToken/vDODOToken.sol index ec4e526..c7a22b2 100644 --- a/contracts/DODOToken/vDODOToken.sol +++ b/contracts/DODOToken/vDODOToken.sol @@ -20,7 +20,7 @@ interface IGovernance { } interface IDODOCirculationHelper { - // vDODO 锁仓不算流通 + // Locked vDOOD not counted in circulation function getCirculation() external view returns (uint256); function getVDODOWithdrawFeeRatio() external view returns (uint256);