Skip to content

Commit acd6d62

Browse files
committed
lint
1 parent 9d30af8 commit acd6d62

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

beacon_node/http_api/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ authors = ["Paul Hauner <[email protected]>"]
55
edition = { workspace = true }
66
autotests = false # using a single test binary compiles faster
77

8-
[features]
9-
fork_from_env = [] # Initialise the harness chain spec from the FORK_NAME env variable
10-
118
[dependencies]
129
beacon_chain = { workspace = true }
1310
beacon_processor = { workspace = true }

beacon_node/http_api/tests/interactive_tests.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ async fn lighthouse_restart_custody_backfill() {
10831083
)
10841084
.await;
10851085

1086-
let cgc_at_head = custody_context.custody_group_count_at_head(&spec);
1086+
let cgc_at_head = custody_context.custody_group_count_at_head(spec);
10871087
let earliest_data_column_epoch = harness.chain.earliest_custodied_data_column_epoch();
10881088

10891089
assert_eq!(cgc_at_head, max_cgc);
@@ -1092,9 +1092,9 @@ async fn lighthouse_restart_custody_backfill() {
10921092
custody_context.update_and_backfill_custody_count_at_epoch(harness.chain.epoch().unwrap());
10931093
client.post_lighthouse_custody_backfill().await.unwrap();
10941094

1095-
let cgc_at_head = custody_context.custody_group_count_at_head(&spec);
1095+
let cgc_at_head = custody_context.custody_group_count_at_head(spec);
10961096
let cgc_at_previous_epoch =
1097-
custody_context.custody_group_count_at_epoch(harness.chain.epoch().unwrap() - 1, &spec);
1097+
custody_context.custody_group_count_at_epoch(harness.chain.epoch().unwrap() - 1, spec);
10981098
let earliest_data_column_epoch = harness.chain.earliest_custodied_data_column_epoch();
10991099

11001100
// `DataColumnCustodyInfo` should have been updated to the head epoch

0 commit comments

Comments
 (0)