Skip to content

Commit cd03f6e

Browse files
committed
Merge branch 'develop' into chore/static-analysis-error-tests-2
2 parents 501be07 + dd1b787 commit cd03f6e

File tree

93 files changed

+3010
-1942
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+3010
-1942
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE
1313
- Added `result_hex` and `post_condition_aborted` to the block replay RPC endpoint
1414
- Added `--epoch <epoch_number>` flag to `clarity-cli` commands to specify the epoch context for evaluation.
1515

16+
### Fixed
17+
18+
- Correctly produce the receipt for the `costs-4` contract, which was deployed on epoch 3.3 activation. Users who consume node events and want to fill in the missing receipt (e.g. the Hiro API) will need to revert their chainstate to before the 3.3 activation and then resume sync to receive the previously missing event.
19+
1620
## [3.3.0.0.1]
1721

1822
- Add indexes to `nakamoto_block_headers` to fix a performance regression. Node may take a few minutes to restart during the upgrade while the new indexes are created.

clarity-types/src/errors/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,6 @@ pub enum EarlyReturnError {
207207
AssertionFailed(Box<Value>),
208208
}
209209

210-
pub type InterpreterResult<R> = Result<R, VmExecutionError>;
211-
212210
impl<T> PartialEq<IncomparableError<T>> for IncomparableError<T> {
213211
fn eq(&self, _other: &IncomparableError<T>) -> bool {
214212
false

0 commit comments

Comments
 (0)