We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7162ec commit 5b2fe8eCopy full SHA for 5b2fe8e
contracts/token/erc721/abstract/ERC721HybridV2.sol
@@ -81,7 +81,7 @@ abstract contract ERC721HybridV2 is ERC721PsiBurnableV2, ERC721, IImmutableERC72
81
/* @notice Overwritten functions with combined implementations, supply for the collection is summed as they
82
* are tracked differently by each minting strategy
83
*/
84
- function totalSupply() public view override(ERC721PsiV2) returns (uint256) {
+ function totalSupply() public view virtual override(ERC721PsiV2) returns (uint256) {
85
return ERC721PsiV2.totalSupply() + _idMintTotalSupply;
86
}
87
0 commit comments