mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: fix clippy errors (#9845)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
@ -262,10 +262,10 @@ pub async fn test_exex_context_with_chain_spec(
|
||||
|
||||
let genesis = provider_factory
|
||||
.block_by_hash(genesis_hash)?
|
||||
.ok_or(eyre::eyre!("genesis block not found"))?
|
||||
.ok_or_else(|| eyre::eyre!("genesis block not found"))?
|
||||
.seal_slow()
|
||||
.seal_with_senders()
|
||||
.ok_or(eyre::eyre!("failed to recover senders"))?;
|
||||
.ok_or_else(|| eyre::eyre!("failed to recover senders"))?;
|
||||
|
||||
let head = Head {
|
||||
number: genesis.number,
|
||||
|
||||
Reference in New Issue
Block a user