chore: misc SealedBlock prep (#13736)

This commit is contained in:
Matthias Seitz
2025-01-08 16:07:52 +01:00
committed by GitHub
parent b5734bfb65
commit f2521b54de
6 changed files with 12 additions and 36 deletions

View File

@ -108,7 +108,7 @@ where
// Unseal the block for execution
let (block, senders) = block.into_components();
let (header, body) = block.split_header_body();
let (header, body) = block.split();
let (unsealed_header, hash) = header.split();
let block = P::Block::new(unsealed_header, body).with_senders_unchecked(senders);