Skip to content

Commit

Permalink
change no EigenDA configured to a log level error, follow same patter…
Browse files Browse the repository at this point in the history
…n as DAS reader
  • Loading branch information
afkbyte committed Jun 10, 2024
1 parent fc12d81 commit c1f70c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbstate/inbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func parseSequencerMessage(ctx context.Context, batchNum uint64, batchBlockHash
} else if IsBlobHashesHeaderByte(payload[0]) {
return nil, ErrNoBlobReader
} else if eigenda.IsEigenDAMessageHeaderByte(payload[0]) {
return nil, ErrNoEigenDAReader
log.Error(ErrNoEigenDAReader)

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (challenge)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (challenge)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (challenge)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (challenge)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (challenge)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (challenge)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (challenge)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (defaults)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (defaults)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (defaults)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (defaults)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (defaults)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (defaults)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (defaults)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (race)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (race)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (race)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (race)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (race)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (race)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error

Check failure on line 126 in arbstate/inbox.go

View workflow job for this annotation

GitHub Actions / Go Tests (race)

cannot use ErrNoEigenDAReader (variable of type error) as string value in argument to log.Error
}
}
}
Expand Down

0 comments on commit c1f70c2

Please sign in to comment.