Skip to content

Commit

Permalink
Skips L1MessageType_BatchPostingReport when resequencing delayed mess…
Browse files Browse the repository at this point in the history
…ages
  • Loading branch information
diegoximenes committed Jul 26, 2024
1 parent 89fd178 commit 17d04ec
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions execution/gethexec/executionengine.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,10 @@ func (s *ExecutionEngine) resequenceReorgedMessages(messages []*arbostypes.Messa
log.Info("not resequencing delayed message due to unexpected index", "expected", nextDelayedSeqNum, "found", delayedSeqNum)
continue
}
if header.Kind == arbostypes.L1MessageType_BatchPostingReport {
log.Debug("skipping L1MessageType_BatchPostingReport message", "header", header)
continue
}
_, err := s.sequenceDelayedMessageWithBlockMutex(msg.Message, delayedSeqNum)
if err != nil {
log.Error("failed to re-sequence old delayed message removed by reorg", "err", err)
Expand Down

0 comments on commit 17d04ec

Please sign in to comment.