From 9fc10a5e855460baedce91d9e2b680e8f10b0d59 Mon Sep 17 00:00:00 2001 From: benbierens Date: Tue, 16 Jan 2024 15:48:33 +0100 Subject: [PATCH] Fixes testmanifest. --- tests/codex/testmanifest.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/codex/testmanifest.nim b/tests/codex/testmanifest.nim index 35feefb8..184bcdd0 100644 --- a/tests/codex/testmanifest.nim +++ b/tests/codex/testmanifest.nim @@ -39,11 +39,11 @@ checksuite "Manifest": slotLeavesCids = leaves.toSlotCids().tryGet tree = Poseidon2Tree.init(leaves).tryGet - slotsRootsCid = tree.root.tryGet.toSlotsRootsCid().tryGet + verifyCid = tree.root.tryGet.toVerifyCid().tryGet verifiableManifest = Manifest.new( manifest = protectedManifest, - verifyRoot = slotsRootsCid, + verifyRoot = verifyCid, slotRoots = slotLeavesCids ).tryGet()