Skip to content

Commit a595886

Browse files
authored
Update Token.sol
1 parent 7131030 commit a595886

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contracts/Token.sol

+3-3
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,8 @@ contract MyToken is ERC20, Ownable, Pausable {
246246
address private liquidityTaxWallet = address(0);
247247

248248
/**
249-
* @dev This is the only wallet that cannot be changed. This is the wallet you use to retrieve liquidity from PancakeSwap
250-
* This is the same wallet as the presaleLiquidityWallet on TokenPresale.sol
249+
* @dev This is the only wallet that cannot be changed once it is deployed. This is the wallet you use to retrieve liquidity from PancakeSwap.
250+
* This is the same address as the presaleLiquidityWallet on TokenPresale.sol
251251
*/
252252
address private presaleLiquidityWallet = address(0);
253253

@@ -488,7 +488,7 @@ contract MyToken is ERC20, Ownable, Pausable {
488488
}
489489

490490
/**
491-
* @dev Set presale contract address automatically right after presale contract is deployed
491+
* @dev Sets presale contract address. It is called automatically right after presale contract is deployed.
492492
*/
493493
function setPresaleContractAddress() external override returns (address) {
494494
require(presaleContractAddress == address(0), "Address already initialized");

0 commit comments

Comments
 (0)