From 99180de710b815ef9c8a1555a6334efcaa3fb259 Mon Sep 17 00:00:00 2001 From: Arnau Date: Wed, 31 Jul 2024 17:49:42 +0200 Subject: [PATCH] Fix UTs --- l1infotreesync/processor.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/l1infotreesync/processor.go b/l1infotreesync/processor.go index 864421be..1de6f879 100644 --- a/l1infotreesync/processor.go +++ b/l1infotreesync/processor.go @@ -31,8 +31,10 @@ const ( // of rootTable and indexTable references the key of the infoTable // Key: hash of the leaf that caused the update (common.Hash) // Value: JSON of storeLeaf struct + infoTable = dbPrefix + "-info" // blockTable stores the first and last index of L1 Info Tree that have been updated on // Value: JSON of blockWithLeafs + blockTable = dbPrefix + "-block" // lastBlockTable used to store the last block processed. This is needed to know the last processed blcok lastBlockTable = dbPrefix + "-lastBlock"