Skip to content

Commit

Permalink
fix: _transfer override
Browse files Browse the repository at this point in the history
  • Loading branch information
shottah committed Feb 28, 2024
1 parent 3a46267 commit 4160ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/Token.sol
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ contract KolektivoTTD is Ownable, Pausable {
/// @param address Recipient's address
/// @param uint256 Amount of tokens to transfer
function _transfer(address sender, address recipient, uint256 amount) internal override whenNotPaused {
super._transfer(sender, recipient, amount);
ERC20._transfer(sender, recipient, amount);
}

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

0 comments on commit 4160ae8

Please sign in to comment.