Skip to content

Commit d2fc7e0

Browse files
committed
use super to be consistent
1 parent df502c6 commit d2fc7e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tokens/ERC1155/ERC1155BaseToken.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ abstract contract ERC1155BaseToken is ERC1155Supply, ERC2981Controlled, SignalsI
106106
* @param amount Amount of tokens to burn
107107
*/
108108
function burn(uint256 tokenId, uint256 amount) public virtual {
109-
_burn(msg.sender, tokenId, amount);
109+
super._burn(msg.sender, tokenId, amount);
110110
}
111111

112112
/**

0 commit comments

Comments
 (0)