chore: remove prune_modes from BlockWriter (#9231)

This commit is contained in:
Dan Cline
2024-07-02 15:40:07 -04:00
committed by GitHub
parent e95c6dba9d
commit 405b730455
19 changed files with 105 additions and 117 deletions

View File

@ -102,7 +102,6 @@ impl Case for BlockchainTestCase {
)
.try_seal_with_senders()
.unwrap(),
None,
)?;
case.pre.write_to_db(provider.tx_ref())?;
@ -121,7 +120,6 @@ impl Case for BlockchainTestCase {
let decoded = SealedBlock::decode(&mut block.rlp.as_ref())?;
provider.insert_historical_block(
decoded.clone().try_seal_with_senders().unwrap(),
None,
)?;
Ok::<Option<SealedBlock>, Error>(Some(decoded))
})?;