We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The TestEnvironment is executing contracts with incorrect combination for epochs and Clarity versions. For instance, the following is incorrect:
Epoch20 working with Clarity::V3
Each epoch should only allow contract execution up to the default Clarity versions. Consider following default Clarity versions for Stacks epochs.
StacksEpochId::Epoch20 => ClarityVersion::Clarity1, StacksEpochId::Epoch2_05 => ClarityVersion::Clarity1, StacksEpochId::Epoch21 => ClarityVersion::Clarity2, StacksEpochId::Epoch22 => ClarityVersion::Clarity2, StacksEpochId::Epoch23 => ClarityVersion::Clarity2, StacksEpochId::Epoch24 => ClarityVersion::Clarity2, StacksEpochId::Epoch25 => ClarityVersion::Clarity2, StacksEpochId::Epoch30 => ClarityVersion::Clarity3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The TestEnvironment is executing contracts with incorrect combination for epochs and Clarity versions. For instance, the following is incorrect:
Epoch20 working with Clarity::V3
Each epoch should only allow contract execution up to the default Clarity versions. Consider following default Clarity versions for Stacks epochs.
The text was updated successfully, but these errors were encountered: