Skip to content
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 benchmarks/api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func (cfg *Config) RunBenchmark(ctx context.Context, benchmark Benchmark) error

iters, err := benchmark.Scenario(ctx, state)
if err != nil {
// The cancelation can also interrupt a scenario in
// The cancellation can also interrupt a scenario in
// progress.
if err == context.Canceled {
logger.Debug("canceled")
Expand Down
2 changes: 1 addition & 1 deletion conf/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ type Config struct {
// for servicing historical queries.
ArchiveURI string `koanf:"archive_uri"`
// ArchiveHeightMax is the maximum height (inclusive) to query the
// archvie node (ArchiveURI). If the archive node is configured
// archive node (ArchiveURI). If the archive node is configured
// with it's own SQL database instance, this parameter should not
// be needed.
ArchiveHeightMax uint64 `koanf:"archive_height_max"`
Expand Down
2 changes: 1 addition & 1 deletion db/migrations/20220109122505_logs.up.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ func (s *Storage) Upsert(ctx context.Context, value interface{}) error {
return err
}

// LogsUp does performes the 20220109122505_logs up migration.
// LogsUp does performs the 20220109122505_logs up migration.
func LogsUp(ctx context.Context, tx *bun.Tx) error {
logger := logging.GetLogger("migration")

Expand Down
2 changes: 1 addition & 1 deletion indexer/indexer.go
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ func (s *Service) indexingWorker() {
// Start starts service.
func (s *Service) Start() {
// TODO/NotYawning: Non-archive nodes that have the indexer disabled
// likey want to use a different notion of healthy, and probably also
// likely want to use a different notion of healthy, and probably also
// want to start a worker that monitors the database for changes.
if s.indexingDisable {
s.updateHealth(true)
Expand Down
Loading