Skip to content

Commit

Permalink
add missing processor calls
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaubennassar committed Sep 16, 2024
1 parent 9cf39d0 commit d789a20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions l1infotreesync/l1infotreesync.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

0 comments on commit d789a20

Please sign in to comment.