Skip to content

Commit 5c56a83

Browse files
authored
Merge branch 'release-v7.0.0' into reject-attestations-prior-to-split
2 parents fb9e049 + 3a555f5 commit 5c56a83

File tree

6 files changed

+5
-12
lines changed

6 files changed

+5
-12
lines changed

Cargo.lock

Lines changed: 0 additions & 7 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
@@ -161,7 +161,7 @@ mockito = "1.5.0"
161161
num_cpus = "1"
162162
parking_lot = "0.12"
163163
paste = "1"
164-
prometheus = "0.13"
164+
prometheus = { version = "0.13", default-features = false }
165165
quickcheck = "1"
166166
quickcheck_macros = "1"
167167
quote = "1"

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-2024-0437
253+
cargo audit
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
@@ -1009,7 +1009,7 @@ pub fn cli_app() -> Command {
10091009
database when they are older than the data availability boundary \
10101010
relative to the current epoch.")
10111011
.action(ArgAction::Set)
1012-
.default_value("1")
1012+
.default_value("256")
10131013
.display_order(0)
10141014
)
10151015
.arg(

book/src/help_bn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Options:
118118
--epochs-per-blob-prune <EPOCHS>
119119
The epoch interval with which to prune blobs from Lighthouse's
120120
database when they are older than the data availability boundary
121-
relative to the current epoch. [default: 1]
121+
relative to the current epoch. [default: 256]
122122
--epochs-per-migration <N>
123123
The number of epochs to wait between running the migration of data
124124
from the hot DB to the cold DB. Less frequent runs can be useful for

lighthouse/tests/beacon_node.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1972,7 +1972,7 @@ fn prune_blobs_on_startup_false() {
19721972
fn epochs_per_blob_prune_default() {
19731973
CommandLineTest::new()
19741974
.run_with_zero_port()
1975-
.with_config(|config| assert!(config.store.epochs_per_blob_prune == 1));
1975+
.with_config(|config| assert_eq!(config.store.epochs_per_blob_prune, 256));
19761976
}
19771977
#[test]
19781978
fn epochs_per_blob_prune_on_startup_five() {

0 commit comments

Comments
 (0)