Skip to content

Commit 0bc1025

Browse files
authored
Updating the project due to dependency changes: . #none
Updating the project due to dependency changes. . #none
2 parents 5bc2dec + 2df9ad1 commit 0bc1025

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## Version 1.8.190
6+
7+
- Fix depth bug of exotic cell
8+
59
## Version 1.8.187
610

711
- Add new GASREMAINING insn

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
build = 'common/build/build.rs'
33
edition = '2021'
44
name = 'ton_vm'
5-
version = '1.8.189'
5+
version = '1.8.190'
66

77
[dependencies]
88
ed25519 = '1.2'

src/executor/serialization.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ pub fn execute_cdepth(engine: &mut Engine) -> Status {
682682
0
683683
} else {
684684
let c = engine.cmd.var(0).as_cell()?;
685-
if c.references_count() == 0 {
685+
if !engine.check_capabilities(ton_block::GlobalCapabilities::CapResolveMerkleCell as u64) && c.references_count() == 0 {
686686
0
687687
} else {
688688
c.depth(MAX_LEVEL)

0 commit comments

Comments
 (0)