Skip to content

Commit

Permalink
rpc: don't explicitly set default bailout argument (#2645)
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast authored Jan 10, 2025
1 parent b00be69 commit 1266b38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions silkworm/rpc/core/evm_debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ Task<void> DebugExecutor::execute(json::Stream& stream, const ChainStorage& stor
stream.open_array();

Tracers tracers{debug_tracer};
const auto execution_result = executor.call(block, txn, tracers, refunds, /* gasBailout */ false);
const auto execution_result = executor.call(block, txn, tracers, refunds);

debug_tracer->flush_logs();
stream.close_array();
Expand Down Expand Up @@ -607,7 +607,7 @@ Task<void> DebugExecutor::execute(
auto debug_tracer = std::make_shared<debug::DebugTracer>(stream, config_);
Tracers tracers{debug_tracer};

const auto execution_result = executor.call(block_context.block_with_hash->block, txn, tracers, refunds, /* gasBailout */ false);
const auto execution_result = executor.call(block_context.block_with_hash->block, txn, tracers, refunds);

debug_tracer->flush_logs();
stream.close_array();
Expand Down

0 comments on commit 1266b38

Please sign in to comment.