···136136 | Some tree_root ->
137137 (* Copy blocks from heap to local blockstore *)
138138 let rec copy_block cid =
139139- match Irmin.Heap.get C.heap cid with
139139+ match Irmin.Heap.find C.heap cid with
140140 | Some data -> (
141141 bs#put cid data;
142142 (* Try to decode as MST node and copy subtrees *)
+2-2
test/atp/test_scitt_atp.ml
···4949 type hash = Atp.Cid.t
5050 type block = string
51515252- let get (bs : t) h = bs#get h
5252+ let find (bs : t) h = bs#get h
5353 let put (bs : t) h data = bs#put h data
5454 let mem (bs : t) h = bs#has h
5555 let batch bs l = List.iter (fun (h, d) -> bs#put h d) l
5656- let get_ref _ _ = None
5656+ let find_ref _ _ = None
5757 let set_ref _ _ _ = ()
5858 let del_ref _ _ = ()
5959 let list_refs _ = []