File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
client/basic-authorship-ver/src Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -412,7 +412,6 @@ where
412412 let block_timer = time:: Instant :: now ( ) ;
413413 let mut skipped = 0 ;
414414 let mut unqueue_invalid = Vec :: new ( ) ;
415- block_builder. apply_previous_block_extrinsics ( seed. clone ( ) ) ;
416415
417416 let mut t1 = self . transaction_pool . ready_at ( self . parent_number ) . fuse ( ) ;
418417 // NOTE reduce deadline by half ('/16' instead of '/8') as we want to avoid situation where
@@ -421,6 +420,8 @@ where
421420 let mut t2 =
422421 futures_timer:: Delay :: new ( deadline. saturating_duration_since ( ( self . now ) ( ) ) / 16 ) . fuse ( ) ;
423422
423+ block_builder. apply_previous_block_extrinsics ( seed. clone ( ) ) ;
424+
424425 let mut pending_iterator = select ! {
425426 res = t1 => res,
426427 _ = t2 => {
You can’t perform that action at this time.
0 commit comments