Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
docs
  • Loading branch information
rakita committed Jan 20, 2025
commit 59fdf3e64b9654903954ad8b579da350fec7374e
4 changes: 2 additions & 2 deletions crates/handler/src/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ pub trait EthHandler {
post_execution::reward_beneficiary(context, exec_result.gas_mut()).map_err(From::from)
}

/// Main return handle, takes state from journal and transforms internal result to [`Output`][PostExecutionHandler::Output].
/// Main return handle, takes state from journal and transforms internal result to output.
fn output(
&self,
context: &mut Self::Context,
Expand All @@ -294,7 +294,7 @@ pub trait EthHandler {
///
/// End handle in comparison to output handle will be called every time after execution.
///
/// While [`output`][PostExecutionHandler::output] will be omitted in case of the error.
/// While output will be omitted in case of the error.
fn end(
&self,
_context: &mut Self::Context,
Expand Down
Loading