feat: BlockExecutionStrategy::execute_transaction API (#14586)

This commit is contained in:
Arsenii Kulikov
2025-02-19 18:03:13 +04:00
committed by GitHub
parent e51e109723
commit b9c81e4d94
4 changed files with 138 additions and 137 deletions

View File

@ -133,9 +133,9 @@ where
Ok(())
}
fn execute_transactions<'a>(
fn execute_transaction(
&mut self,
_transactions: impl IntoIterator<Item = Recovered<&'a TransactionSigned>>,
_tx: Recovered<&TransactionSigned>,
) -> Result<(), Self::Error> {
Ok(())
}