Skip to content

Commit

Permalink
Merge branch 'main' into assert
Browse files Browse the repository at this point in the history
  • Loading branch information
Manav-Aggarwal authored Nov 23, 2023
2 parents fe14e52 + 2272389 commit d574abd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions node/full.go
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ func (n *FullNode) OnStop() {
err = multierr.Append(err, n.p2pClient.Close())
err = multierr.Append(err, n.hSyncService.Stop())
err = multierr.Append(err, n.bSyncService.Stop())
err = multierr.Append(err, n.IndexerService.Stop())
n.Logger.Error("errors while stopping node:", "errors", err)
}

Expand Down
2 changes: 1 addition & 1 deletion state/indexer-service.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The Indexer service indexes transactions and blocks using events emitted by the

## Protocol/Component Description

The Indexer service consists of three main components: an event bus, a transaction indexer and a block indexer.
The Indexer service is started and stopped along with a Full Node. It consists of three main components: an event bus, a transaction indexer and a block indexer.

### Event Bus

Expand Down

0 comments on commit d574abd

Please sign in to comment.