Fix camel case

This commit is contained in:
Arnaud 2024-12-26 07:19:59 +01:00
parent 627e6ae5a6
commit 51a40548d1
No known key found for this signature in database
GPG Key ID: 69D6CE281FCAE663

View File

@ -97,11 +97,11 @@ proc createProtectedManifest*(
protectedTreeCid = protectedTree.rootCid().tryGet()
for index, cid in cids[0..<numDatasetBlocks]:
let proof = datasetTree.getProof(index).tryget()
let proof = datasetTree.getProof(index).tryGet()
(await store.putCidAndProof(datasetTreeCid, index, cid, proof)).tryGet
for index, cid in cids:
let proof = protectedTree.getProof(index).tryget()
let proof = protectedTree.getProof(index).tryGet()
(await store.putCidAndProof(protectedTreeCid, index, cid, proof)).tryGet
let