Skip to content

Commit

Permalink
disable head rc check on mpt nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
omerfirmak committed Jan 9, 2025
1 parent 1ff0d01 commit cc7930b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miner/scroll_worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ func (w *worker) mainLoop() {
select {
case <-w.startCh:
idleTimer.UpdateSince(idleStart)
if w.isRunning() {
if w.isRunning() && w.chainConfig.Scroll.UseZktrie {
if err := w.checkHeadRowConsumption(); err != nil {
log.Error("failed to start head checkers", "err", err)
return
Expand Down

0 comments on commit cc7930b

Please sign in to comment.