Skip to content
Merged
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
13 changes: 9 additions & 4 deletions docs/topics/services/blockPersister.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ The following diagram provides a deeper level of detail into the Block Persister

![block_persister_detailed_component.svg](img/plantuml/blockpersister/block_persister_detailed_component.svg)


## 2. Functionality

### 2.1 Service Initialization
Expand Down Expand Up @@ -215,9 +214,14 @@ The Block Persister service is located in the `services/blockpersister` director

```text
services/blockpersister/
├── state/ # State management
├── server.go # Main service implementation
└── metrics.go # Prometheus metrics
├── state/ # State management
├── Server.go # Main service implementation
├── Server_test.go # Service tests
├── persist_block.go # Block persistence logic
├── persist_block_test.go # Block persistence tests
├── processSubtree.go # Subtree processing logic
├── processTxMetaUsingStore.go # Transaction metadata processing
└── metrics.go # Prometheus metrics
```

## 6. How to run
Expand All @@ -233,6 +237,7 @@ Please refer to the [Locally Running Services Documentation](../../howto/locally
## 7. Configuration options (settings flags)

For comprehensive configuration documentation including all settings, defaults, and interactions, see the [block Persister Settings Reference](../../references/settings/services/blockpersister_settings.md).

## 8. Other Resources

[Block Persister Reference](../../references/services/blockpersister_reference.md)