diff --git a/modules/type/blocks/dap_chain_cs_blocks.c b/modules/type/blocks/dap_chain_cs_blocks.c
index dfbb80e479893ba23cec12da599845c04688f35e..5767887c8fbe56e0ee27362820a6e96ddf9327b0 100644
--- a/modules/type/blocks/dap_chain_cs_blocks.c
+++ b/modules/type/blocks/dap_chain_cs_blocks.c
@@ -1460,7 +1460,7 @@ static void s_callback_cs_blocks_purge(dap_chain_t *a_chain)
     pthread_rwlock_unlock(&PVT(l_blocks)->datums_rwlock);
 
     dap_chain_block_chunks_delete(PVT(l_blocks)->chunks);
-    dap_chain_cell_delete_all_and_free_file(a_chain);
+    //dap_chain_cell_delete_all_and_free_file(a_chain);
     PVT(l_blocks)->chunks = dap_chain_block_chunks_create(l_blocks);
 }
 
diff --git a/modules/type/dag/dap_chain_cs_dag.c b/modules/type/dag/dap_chain_cs_dag.c
index 8622d0b372095cb44bf665dcdf166c5d5bdeb8d2..5b218035b83821aed43e8971c78dba3fc79d0d65 100644
--- a/modules/type/dag/dap_chain_cs_dag.c
+++ b/modules/type/dag/dap_chain_cs_dag.c
@@ -365,7 +365,7 @@ static void s_dap_chain_cs_dag_purge(dap_chain_t *a_chain)
         DAP_DELETE(l_event_current);
     }
     pthread_mutex_unlock(&l_dag_pvt->events_mutex);
-    dap_chain_cell_delete_all_and_free_file(a_chain);
+    //dap_chain_cell_delete_all_and_free_file(a_chain);
 }
 
 /**