diff --git a/contracts/DODOToken/vDODOToken.sol b/contracts/DODOToken/vDODOToken.sol index 3432e66..83db230 100644 --- a/contracts/DODOToken/vDODOToken.sol +++ b/contracts/DODOToken/vDODOToken.sol @@ -395,6 +395,7 @@ contract vDODOToken is InitializableOwnable { require(to != address(0), "transfer to the zero address"); require(from != to, "transfer from same with to"); + uint256 stakingPower = DecimalMath.divFloor(vDODOAmount * _DODO_RATIO_, alpha); UserInfo storage fromUser = userInfo[from];