feat: generic receipt ExecuteOutput (#12966)

This commit is contained in:
Hoa Nguyen
2024-11-30 22:49:54 +07:00
committed by GitHub
parent e0cad9fdae
commit 7353dc94a8
4 changed files with 10 additions and 8 deletions

View File

@ -161,7 +161,7 @@ where
&mut self,
_block: &BlockWithSenders,
_total_difficulty: U256,
) -> Result<ExecuteOutput, Self::Error> {
) -> Result<ExecuteOutput<Receipt>, Self::Error> {
Ok(ExecuteOutput { receipts: vec![], gas_used: 0 })
}