Skip to content

Commit 4160ae8

Browse files
committed
fix: _transfer override
1 parent 3a46267 commit 4160ae8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/Token.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ contract KolektivoTTD is Ownable, Pausable {
3838
/// @param address Recipient's address
3939
/// @param uint256 Amount of tokens to transfer
4040
function _transfer(address sender, address recipient, uint256 amount) internal override whenNotPaused {
41-
super._transfer(sender, recipient, amount);
41+
ERC20._transfer(sender, recipient, amount);
4242
}
4343

4444
/// @notice This account has reached the maximum threshold to be

0 commit comments

Comments
 (0)