File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 22
33All 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
Original file line number Diff line number Diff line change 22build = ' common/build/build.rs'
33edition = ' 2021'
44name = ' ton_vm'
5- version = ' 1.8.189 '
5+ version = ' 1.8.190 '
66
77[dependencies ]
88ed25519 = ' 1.2'
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments