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;
47
47
type TestHarness = BeaconChainHarness < DiskHarnessType < E > > ;
48
48
49
49
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 > ( ) )
55
55
}
56
56
57
57
fn get_store_generic (
@@ -3604,7 +3604,7 @@ fn check_chain_dump(harness: &TestHarness, expected_len: u64) {
3604
3604
. store
3605
3605
. execution_payload_exists( & checkpoint. beacon_block_root)
3606
3606
. unwrap( ) ,
3607
- checkpoint . beacon_block . slot ( ) >= split_slot ,
3607
+ true ,
3608
3608
"incorrect payload storage for block at slot {}: {:?}" ,
3609
3609
checkpoint. beacon_block. slot( ) ,
3610
3610
checkpoint. beacon_block_root,
You can’t perform that action at this time.
0 commit comments