Skip to content

Commit f97f50b

Browse files
committed
Update test
1 parent f791df1 commit f97f50b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

beacon_node/beacon_chain/tests/store_tests.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ type E = MinimalEthSpec;
4747
type TestHarness = BeaconChainHarness<DiskHarnessType<E>>;
4848

4949
fn get_store(db_path: &TempDir) -> Arc<HotColdDB<E, BeaconNodeBackend<E>, BeaconNodeBackend<E>>> {
50-
// let store_config = StoreConfig {
51-
// prune_payloads: false,
52-
// ..StoreConfig::default()
53-
// };
54-
get_store_generic(db_path, StoreConfig::default(), test_spec::<E>())
50+
let store_config = StoreConfig {
51+
prune_payloads: false,
52+
..StoreConfig::default()
53+
};
54+
get_store_generic(db_path, store_config, test_spec::<E>())
5555
}
5656

5757
fn get_store_generic(
@@ -3604,7 +3604,7 @@ fn check_chain_dump(harness: &TestHarness, expected_len: u64) {
36043604
.store
36053605
.execution_payload_exists(&checkpoint.beacon_block_root)
36063606
.unwrap(),
3607-
checkpoint.beacon_block.slot() >= split_slot,
3607+
true,
36083608
"incorrect payload storage for block at slot {}: {:?}",
36093609
checkpoint.beacon_block.slot(),
36103610
checkpoint.beacon_block_root,

0 commit comments

Comments
 (0)