Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,16 @@

## Perf

### 2025-11-11

- Fix `FlatKeyValue` generation on fullsync mode [#5274](https://github.com/lambdaclass/ethrex/pull/5274)

### 2025-11-10

- Disable RocksDB compression [#5223](https://github.com/lambdaclass/ethrex/pull/5223)

### 2025-11-07

- Reuse stack pool in LEVM [#5179](https://github.com/lambdaclass/ethrex/pull/5179)

### 2025-11-03
Expand All @@ -14,6 +20,7 @@
- Merge execution with some post-execution validations [#5170](https://github.com/lambdaclass/ethrex/pull/5170)

### 2025-10-31

- Reduce overhead of trie opening [#5145](https://github.com/lambdaclass/ethrex/pull/5145)
- Improved discovery and peer initialization [#5147](https://github.com/lambdaclass/ethrex/pull/5147)

Expand Down
3 changes: 3 additions & 0 deletions cmd/ethrex/initializers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,9 @@ pub async fn init_l1(
ethrex_crypto::kzg::warm_up_trusted_setup();

let store = init_store(datadir, genesis).await;
if opts.syncmode == SyncMode::Full {
store.generate_flatkeyvalue()?
}

#[cfg(feature = "sync-test")]
set_sync_block(&store).await;
Expand Down
Loading