check all prepare and post conditions to not to mutate state, like here(?)
post {
self.recipientCollectionRef.getIDs().contains(self.mintingIDBefore): "The next NFT ID should have been minted and delivered"
ExampleNFT.totalSupply == self.mintingIDBefore + 1: "The total supply should have been increased by 1"
}
@nialexsan Can you elaborate on what you mean to fix here? I don't think Cadence allows state changes in pre and post conditions anyway. Do you mean to remove all instances of this in the docs site?
check all
prepare
andpost
conditions to not to mutate state, like here(?)