Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rusk: increase archive channel capacity #3360

Merged
merged 1 commit into from
Jan 20, 2025
Merged
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
2 changes: 2 additions & 0 deletions rusk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Change `check_rusk_version` to ignore pre-release by default
- Increase archive channel capacity from 1000 to 10000 [#3359]

## [1.0.0] - 2025-01-05

Expand Down Expand Up @@ -286,6 +287,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add linking between Rusk and Protobuff structs
- Add build system that generates keys for circuits and caches them.

[#3359]: https://github.com/dusk-network/rusk/issues/3359
[#3206]: https://github.com/dusk-network/rusk/issues/3206
[#2597]: https://github.com/dusk-network/rusk/issues/2597
[#2536]: https://github.com/dusk-network/rusk/issues/2536
Expand Down
2 changes: 1 addition & 1 deletion rusk/src/lib/builder/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ impl RuskNodeBuilder {
let (node_sender, node_receiver) = mpsc::channel(1000);

#[cfg(feature = "archive")]
let (archive_sender, archive_receiver) = mpsc::channel(1000);
let (archive_sender, archive_receiver) = mpsc::channel(10000);

let gas_per_deploy_byte = self
.gas_per_deploy_byte
Expand Down
Loading