diff --git a/contracts/token/YAM.sol b/contracts/token/YAM.sol index c1db7f6c..44b5c62d 100644 --- a/contracts/token/YAM.sol +++ b/contracts/token/YAM.sol @@ -337,7 +337,7 @@ contract YAMToken is YAMGovernanceToken { } } - totalSupply = initSupply.mul(yamsScalingFactor); + totalSupply = initSupply.mul(yamsScalingFactor).div(BASE); emit Rebase(epoch, prevYamsScalingFactor, yamsScalingFactor); return totalSupply; }