refactor: remove Receipts struct (#14130)

This commit is contained in:
Arsenii Kulikov
2025-02-01 01:59:31 +04:00
committed by GitHub
parent d30a1b6c7d
commit 1c9ef8c5a3
32 changed files with 179 additions and 307 deletions

View File

@ -23,7 +23,7 @@ pub(crate) fn to_execution_outcome(
) -> ExecutionOutcome {
ExecutionOutcome {
bundle: block_execution_output.state.clone(),
receipts: block_execution_output.receipts.clone().into(),
receipts: vec![block_execution_output.receipts.clone()],
first_block: block_number,
requests: vec![block_execution_output.requests.clone()],
}