File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 55edition = { workspace = true }
66autotests = 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 ]
129beacon_chain = { workspace = true }
1310beacon_processor = { workspace = true }
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments