fix maxSupplyNotLowerThanTotalSupply in CollectibleV1 spec

This commit is contained in:
0xb337r007 2024-02-22 09:37:37 +01:00
parent 9f10bf629e
commit 6a55d407cd
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ rule maxSupplyCannotBeLowerThanMintedCount() {
}
rule maxSupplyNotLowerThanTotalSupply(env e, method f) {
require mintedCount() >= totalSupply();
require maxSupply() >= totalSupply();
calldataarg args;