File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ void CollatedDataMerger::add_cells(Ref<vm::Cell> cell) {
4848 }
4949 info.visited = true ;
5050 auto loaded_cell = cell->load_cell ().move_as_ok ();
51- CHECK (loaded_cell.virt . get_virtualization () == 0 );
51+ CHECK (loaded_cell.effective_level >= loaded_cell. data_cell -> get_level () );
5252 auto data_cell = std::move (loaded_cell.data_cell );
5353 info.set_cell (data_cell);
5454
Original file line number Diff line number Diff line change @@ -6779,7 +6779,7 @@ void Collator::on_cell_loaded(const vm::LoadedCell& loaded_cell) {
67796779 stats_.work_time .total_on_cell_loaded += timer.elapsed_both ();
67806780 };
67816781 if (merge_collated_data_enabled_) {
6782- vm::CellHash hash = loaded_cell.data_cell ->get_hash (loaded_cell.virt . get_level () );
6782+ vm::CellHash hash = loaded_cell.data_cell ->get_hash (loaded_cell.effective_level );
67836783 if (collated_data_deduplicator_ &&
67846784 collated_data_deduplicator_->cell_exists (hash, new_block_seqno - (optimistic_prev_block_.is_null () ? 0 : 1 ))) {
67856785 return ;
You can’t perform that action at this time.
0 commit comments