Skip to content

Commit

Permalink
fix(eventindexer): disperser should exit (#16836)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey committed Apr 25, 2024
1 parent ccb698a commit 5e914d5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/eventindexer/disperser/disperser.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"context"
"log/slog"
"math/big"
"os"

txmgrMetrics "github.com/ethereum-optimism/optimism/op-service/txmgr/metrics"
"github.com/taikoxyz/taiko-mono/packages/eventindexer/encoding"
Expand Down Expand Up @@ -93,6 +94,8 @@ func (d *Disperser) Start() error {
slog.Info("sent tx", "tx", receipt.TxHash.Hex())
}

os.Exit(0)

return nil
}

Expand Down

0 comments on commit 5e914d5

Please sign in to comment.