fix: missing generic type hint for cursor (#18483)

This commit is contained in:
Matthias Seitz
2025-09-16 01:32:19 +02:00
committed by GitHub
parent b7e9f7608e
commit 8e65a1d1a2

View File

@@ -138,7 +138,7 @@ where
_remove_from: StorageLocation,
) -> ProviderResult<()> {
provider.tx_ref().unwind_table_by_num::<tables::BlockWithdrawals>(block)?;
provider.tx_ref().unwind_table_by_num::<tables::BlockOmmers>(block)?;
provider.tx_ref().unwind_table_by_num::<tables::BlockOmmers<H>>(block)?;
Ok(())
}