Skip to content

Commit 4fee4bf

Browse files
committed
[merkle-update-compression] Replace prunned branch construction method
1 parent ff6f968 commit 4fee4bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crypto/vm/boc-compression.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ td::Result<std::vector<td::Ref<vm::Cell>>> boc_decompress_improved_structure_lz4
750750
}
751751
// Create PB from state cell (either regular cell or lower-level PB)
752752
td::Ref<vm::Cell> pb_cell =
753-
vm::CellBuilder::create_pruned_branch(source_cell, merkle_depth + 1);
753+
vm::CellBuilder::do_create_pruned_branch(source_cell, merkle_depth + 1);
754754
if (pb_cell.is_null()) {
755755
return td::Status::Error("BOC decompression failed: failed to create pruned branch from state");
756756
}

0 commit comments

Comments
 (0)