From d789a2062917e05069bedff611110ddb411fac49 Mon Sep 17 00:00:00 2001 From: Arnau Date: Mon, 16 Sep 2024 12:17:00 +0200 Subject: [PATCH] add missing processor calls --- l1infotreesync/l1infotreesync.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/l1infotreesync/l1infotreesync.go b/l1infotreesync/l1infotreesync.go index 042c4a06..c414e42b 100644 --- a/l1infotreesync/l1infotreesync.go +++ b/l1infotreesync/l1infotreesync.go @@ -169,13 +169,13 @@ func (s *L1InfoTreeSync) GetFirstL1InfoWithRollupExitRoot(rollupExitRoot common. } func (s *L1InfoTreeSync) GetLastInfo() (*L1InfoTreeLeaf, error) { - return nil, nil + return s.processor.GetLastInfo() } func (s *L1InfoTreeSync) GetFirstInfo() (*L1InfoTreeLeaf, error) { - return nil, nil + return s.processor.GetFirstInfo() } func (s *L1InfoTreeSync) GetFirstInfoAfterBlock(blockNum uint64) (*L1InfoTreeLeaf, error) { - return nil, nil + return s.processor.GetFirstInfoAfterBlock(blockNum) }