diff --git a/silkworm/core/execution/processor.cpp b/silkworm/core/execution/processor.cpp index 168c5c5445..5246a5a610 100644 --- a/silkworm/core/execution/processor.cpp +++ b/silkworm/core/execution/processor.cpp @@ -259,6 +259,8 @@ void ExecutionProcessor::execute_transaction(const Transaction& txn, Receipt& re } CallResult ExecutionProcessor::call(const Transaction& txn, const std::vector>& tracers, bool bailout, bool refund) noexcept { + SILKWORM_ASSERT(refund); + (void)refund; const std::optional sender{txn.sender()}; SILKWORM_ASSERT(sender); @@ -294,6 +296,8 @@ CallResult ExecutionProcessor::call(const Transaction& txn, const std::vector