Skip to content

Commit fb9e049

Browse files
authored
Merge branch 'release-v7.0.0' into reject-attestations-prior-to-split
2 parents f121c4a + 9c4fc6e commit fb9e049

File tree

6 files changed

+32
-59
lines changed

6 files changed

+32
-59
lines changed

Cargo.lock

Lines changed: 27 additions & 54 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ reqwest = { version = "0.11", default-features = false, features = [
176176
"rustls-tls",
177177
"native-tls-vendored",
178178
] }
179-
ring = "0.16"
179+
ring = "0.17"
180180
rpds = "0.11"
181181
rusqlite = { version = "0.28", features = ["bundled"] }
182182
serde = { version = "1", features = ["derive"] }

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ install-audit:
250250
cargo install --force cargo-audit
251251

252252
audit-CI:
253-
cargo audit --ignore RUSTSEC-2025-0009 --ignore RUSTSEC-2024-0437
253+
cargo audit --ignore RUSTSEC-2024-0437
254254

255255
# Runs `cargo vendor` to make sure dependencies can be vendored for packaging, reproducibility and archival purpose.
256256
vendor:

beacon_node/src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ pub fn cli_app() -> Command {
812812
.long("state-cache-size")
813813
.value_name("STATE_CACHE_SIZE")
814814
.help("Specifies the size of the state cache")
815-
.default_value("128")
815+
.default_value("32")
816816
.action(ArgAction::Set)
817817
.display_order(0)
818818
)

book/src/help_bn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ Options:
386386
--slots-per-restore-point <SLOT_COUNT>
387387
DEPRECATED. This flag has no effect.
388388
--state-cache-size <STATE_CACHE_SIZE>
389-
Specifies the size of the state cache [default: 128]
389+
Specifies the size of the state cache [default: 32]
390390
--suggested-fee-recipient <SUGGESTED-FEE-RECIPIENT>
391391
Emergency fallback fee recipient for use in case the validator client
392392
does not have one configured. You should set this flag on the

lighthouse/tests/beacon_node.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1873,7 +1873,7 @@ fn block_cache_size_flag() {
18731873
fn state_cache_size_default() {
18741874
CommandLineTest::new()
18751875
.run_with_zero_port()
1876-
.with_config(|config| assert_eq!(config.store.state_cache_size, new_non_zero_usize(128)));
1876+
.with_config(|config| assert_eq!(config.store.state_cache_size, new_non_zero_usize(32)));
18771877
}
18781878
#[test]
18791879
fn state_cache_size_flag() {

0 commit comments

Comments
 (0)