diff --git a/contracts/REFLECT.sol b/contracts/REFLECT.sol index 0a11769..3750b23 100644 --- a/contracts/REFLECT.sol +++ b/contracts/REFLECT.sol @@ -134,7 +134,7 @@ contract REFLECT is Context, IERC20, Ownable { for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; - _tOwned[account] = 0; + //_tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; @@ -158,8 +158,6 @@ contract REFLECT is Context, IERC20, Ownable { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); - } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { - _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { @@ -244,4 +242,4 @@ contract REFLECT is Context, IERC20, Ownable { if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } -} \ No newline at end of file +}