Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(relayer): fix docs #18697

Merged
merged 2 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/relayer/pkg/http/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ type ethClient interface {
// @license.url https://github.com/taikoxyz/taiko-mono/blob/main/LICENSE

// @host relayer.hekla.taiko.xyz
// Server represents an relayer http server instance.
// Server represents a relayer http server instance.
type Server struct {
echo *echo.Echo
eventRepo relayer.EventRepository
Expand Down
2 changes: 1 addition & 1 deletion packages/relayer/processor/wait_header_synced.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/taikoxyz/taiko-mono/packages/relayer"
)

// waitHeaderSynced waits for a event to appear in the database from the indexer
// waitHeaderSynced waits for an event to appear in the database from the indexer
// for the type "ChainDataSynced" to be greater or less than the given blockNum.
// this is used to make sure a valid proof can be generated and verified on chain.
func (p *Processor) waitHeaderSynced(
Expand Down
Loading