Skip to content

Commit

Permalink
Update BabyFlokiDoge.sol
Browse files Browse the repository at this point in the history
removed x2 tax on sell
  • Loading branch information
BabyFlokiDoge committed Oct 21, 2021
1 parent 0ab0148 commit b905d5f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions BabyFlokiDoge.sol
Expand Up @@ -1442,9 +1442,6 @@ contract BabyFlokiDoge is Context, IERC20, Ownable {

function calculateTaxFee(uint256 _amount, bool isSale) private view returns (uint256) {
uint256 this_taxFee = _taxFee;
if(isSale){
this_taxFee = this_taxFee.mul(2);
}
return _amount.mul(this_taxFee).div(100);
}

Expand Down

0 comments on commit b905d5f

Please sign in to comment.