We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a46267 commit 4160ae8Copy full SHA for 4160ae8
contracts/Token.sol
@@ -38,7 +38,7 @@ contract KolektivoTTD is Ownable, Pausable {
38
/// @param address Recipient's address
39
/// @param uint256 Amount of tokens to transfer
40
function _transfer(address sender, address recipient, uint256 amount) internal override whenNotPaused {
41
- super._transfer(sender, recipient, amount);
+ ERC20._transfer(sender, recipient, amount);
42
}
43
44
/// @notice This account has reached the maximum threshold to be
0 commit comments