diff --git a/api/src/mutations/mint.rs b/api/src/mutations/mint.rs index ef07878..53dd07b 100644 --- a/api/src/mutations/mint.rs +++ b/api/src/mutations/mint.rs @@ -542,6 +542,10 @@ impl Mutation { return Err(Error::new("Mint is an edition and cannot be updated")); } + if mint.compressed { + return Err(Error::new("Mint is compressed and cannot be updated")); + } + let collection = collection.ok_or(Error::new("Collection not found"))?; let blockchain = collection.blockchain;