Skip to content

Commit

Permalink
feat: e2e privacy integration
Browse files Browse the repository at this point in the history
  • Loading branch information
Alok committed Apr 12, 2024
1 parent c18ca06 commit a92e351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/l1Listener/l1Listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func (l *L1Listener) watchL1Block(ctx context.Context) error {
builderAddr, ok := l.builderIdentityCache[winner]
if !ok {
builderAddr, err = l.rollupClient.GetBuilder(winner)
if err != nil {
if err != nil || builderAddr.Cmp(common.Address{}) == 0 {
if errors.Is(err, ethereum.NotFound) {
l.logger.Warn(
"builder not registered",
Expand Down

0 comments on commit a92e351

Please sign in to comment.