Skip to content

Commit d70f76e

Browse files
committed
lint
1 parent fbd94ce commit d70f76e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pkg/sequencers/based/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ type Checkpoint struct {
8989

9090
#### 1. Initial State
9191

92-
```
92+
```bash
9393
Checkpoint: (DAHeight: 100, TxIndex: 0)
9494
- Ready to fetch epoch starting at DA height 100
9595
```
@@ -98,7 +98,7 @@ Checkpoint: (DAHeight: 100, TxIndex: 0)
9898

9999
When `GetNextBatch()` is called and we're at an epoch end:
100100

101-
```
101+
```bash
102102
Request: GetNextBatch(maxBytes: 1MB)
103103
Action: Fetch all transactions from epoch (DA heights 100-109)
104104
Result: currentBatchTxs = [tx1, tx2, tx3, ..., txN] (from entire epoch)
@@ -108,7 +108,7 @@ Result: currentBatchTxs = [tx1, tx2, tx3, ..., txN] (from entire epoch)
108108

109109
Transactions are processed incrementally, respecting `maxBytes`:
110110

111-
```
111+
```bash
112112
Batch 1: [tx1, tx2] (fits in maxBytes)
113113
Checkpoint: (DAHeight: 100, TxIndex: 2)
114114

pkg/sequencers/single/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ The checkpoint system ensures that **forced inclusion transactions from DA are n
150150

151151
### Example
152152

153-
```
153+
```bash
154154
Initial state: Checkpoint(DAHeight: 100, TxIndex: 0)
155155
DA returns 3 transactions at height 100
156156

0 commit comments

Comments
 (0)