File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
beacon_node/beacon_chain/tests Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -47,11 +47,11 @@ type E = MinimalEthSpec;
4747type TestHarness = BeaconChainHarness < DiskHarnessType < E > > ;
4848
4949fn 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
5757fn 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,
You can’t perform that action at this time.
0 commit comments