You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"
}
The text was updated successfully, but these errors were encountered:
@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(?)The text was updated successfully, but these errors were encountered: