From f96cbf963a8fd8b75db442ed4a81158946f511ac Mon Sep 17 00:00:00 2001 From: rakita Date: Thu, 2 May 2024 16:27:01 +0400 Subject: [PATCH] chore(ci): bump action/deploy (#1372) --- .github/workflows/book.yml | 2 +- crates/revm/src/handler/handle_types/post_execution.rs | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index f3570db0..b76a76dd 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -129,4 +129,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 \ No newline at end of file + uses: actions/deploy-pages@v4 \ No newline at end of file diff --git a/crates/revm/src/handler/handle_types/post_execution.rs b/crates/revm/src/handler/handle_types/post_execution.rs index 393b321a..2b7a2347 100644 --- a/crates/revm/src/handler/handle_types/post_execution.rs +++ b/crates/revm/src/handler/handle_types/post_execution.rs @@ -43,7 +43,9 @@ pub struct PostExecutionHandler<'a, EXT, DB: Database> { pub reward_beneficiary: RewardBeneficiaryHandle<'a, EXT, DB>, /// Main return handle, returns the output of the transact. pub output: OutputHandle<'a, EXT, DB>, - /// End handle. + /// Called when execution ends. + /// End handle in comparison to output handle will be called every time after execution. + /// Output in case of error will not be called. pub end: EndHandle<'a, EXT, DB>, }