chore: unify unchecked naming (#13391)

This commit is contained in:
Matthias Seitz
2024-12-13 19:34:37 +01:00
committed by GitHub
parent d087488479
commit a7ebd15d24
5 changed files with 6 additions and 6 deletions

View File

@ -2577,7 +2577,7 @@ mod tests {
.unseal::<reth_primitives::Block>()
.with_recovered_senders()
.unwrap()
.seal(block.hash())
.seal_unchecked(block.hash())
)
),
(BlockHashOrNumber::Number(u64::MAX), TransactionVariant::WithHash)
@ -2593,7 +2593,7 @@ mod tests {
.unseal::<reth_primitives::Block>()
.with_recovered_senders()
.unwrap()
.seal(block.hash())
.seal_unchecked(block.hash())
)
),
(BlockHashOrNumber::Hash(B256::random()), TransactionVariant::WithHash)