--- a/pallets/common/src/lib.rs +++ b/pallets/common/src/lib.rs @@ -417,7 +417,7 @@ // bound Total number of collections ensure!( - created_count - destroyed_count < COLLECTION_NUMBER_LIMIT, + created_count - destroyed_count <= COLLECTION_NUMBER_LIMIT, >::TotalCollectionsLimitExceeded );