Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Replaced blocking-in-async operations in the validator, remote prover, and ntx-builder with `spawn_blocking` to avoid starving the Tokio runtime ([#2041](https://github.com/0xMiden/node/pull/2041)).
- Implement persistent RocksDB backend for `AccountStateForest`, improving startup time ([#2020](https://github.com/0xMiden/node/pull/2020)).
- Bounded the ntx-builder's startup load on the store and added a separate `store_sync_checkpoint` watermark so a partial-catch-up crash can no longer leave the builder thinking it's caught up when it isn't ([#1952](https://github.com/0xMiden/node/issues/1952)).

## v0.14.10 (2026-05-29)

Expand Down
36 changes: 18 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ license = "MIT"
readme = "README.md"
repository = "https://github.com/0xMiden/node"
rust-version = "1.93"
version = "0.14.10"
version = "0.14.11"

[workspace.dependencies]
# Workspace crates.
Expand Down
2 changes: 1 addition & 1 deletion crates/ntx-builder/src/actor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ impl AccountActorContext {
validator: ValidatorClient::new(url.clone()),
prover: None,
chain_state,
store: StoreClient::new(url),
store: StoreClient::new(url, NonZeroUsize::new(1).unwrap()),
script_cache: LruCache::new(NonZeroUsize::new(1).unwrap()),
max_notes_per_tx: NonZeroUsize::new(1).unwrap(),
max_note_attempts: 1,
Expand Down
Loading
Loading