Skip to content

Commit dc1b78c

Browse files
committed
lint
1 parent 223f57e commit dc1b78c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pkg/blob/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This package is a **trimmed copy** of code from `celestia-node` to stay JSON-com
77
- `blob.go` comes from `celestia-node/blob/blob.go` @ tag `v0.28.4` (release v0.28.4), with unused pieces removed (blob v1, proof helpers, share length calc, appconsts dependency, etc.).
88
- `submit_options.go` mirrors the exported JSON fields of `celestia-node/state/tx_config.go` @ the same tag, leaving out functional options, defaults, and Cosmos keyring helpers.
99

10-
## Why copy instead of import?
10+
## Why copy instead of import
1111

1212
- Avoids pulling Cosmos SDK / celestia-app dependencies into ev-node for the small surface we need (blob JSON and commitment for v0).
1313
- Keeps binary size and module graph smaller while remaining wire-compatible with celestia-node's blob service.

pkg/sync/sync_service.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ type SyncService[H header.Header[H]] struct {
4949

5050
p2p *p2p.Client
5151

52-
ex *exchangeWrapper[H]
53-
sub *goheaderp2p.Subscriber[H]
52+
ex *exchangeWrapper[H]
53+
sub *goheaderp2p.Subscriber[H]
5454
p2pServer *goheaderp2p.ExchangeServer[H]
5555
store *goheaderstore.Store[H]
5656
daStore store.Store

sequencers/based/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ When at an epoch end, the retriever fetches transactions from **all DA blocks in
5959
3. Fetches forced inclusion blobs from `epochEnd`
6060
4. Returns all transactions as a single `ForcedInclusionEvent`
6161

62-
### Why Epoch-Based?
62+
### Why Epoch-Based
6363

6464
- **Efficiency**: Reduces the number of DA queries
6565
- **Batching**: Allows processing multiple DA blocks worth of transactions together

0 commit comments

Comments
 (0)