Skip to content

Commit 3de41b3

Browse files
committed
Fix test
1 parent a9da143 commit 3de41b3

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

beacon_node/beacon_chain/src/data_availability_checker.rs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,15 @@ mod test {
10901090
let kzg = get_kzg(&spec);
10911091
let store = Arc::new(HotColdDB::open_ephemeral(<_>::default(), spec.clone()).unwrap());
10921092
let custody_context = Arc::new(CustodyContext::new(false));
1093-
DataAvailabilityChecker::new(slot_clock, kzg, store, custody_context, spec)
1094-
.expect("should initialise data availability checker")
1093+
let complete_blob_backfill = false;
1094+
DataAvailabilityChecker::new(
1095+
complete_blob_backfill,
1096+
slot_clock,
1097+
kzg,
1098+
store,
1099+
custody_context,
1100+
spec,
1101+
)
1102+
.expect("should initialise data availability checker")
10951103
}
10961104
}

0 commit comments

Comments
 (0)