Skip to content

Commit

Permalink
make fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored May 28, 2024
1 parent af8bf0b commit fe4fc5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion silkworm/rpc/core/evm_trace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1782,7 +1782,7 @@ void EntryTracer::on_execution_start(evmc_revision rev, const evmc_message& msg,
const auto& input = silkworm::ByteView{msg.input_data, msg.input_size};

const auto str_value = "0x" + intx::hex(intx::be::load<intx::uint256>(msg.value));
auto str_input = "0x" + silkworm::to_hex(input);
auto str_input = "0x" + silkworm::to_hex(input);

// Ignore precompiles in the returned trace (maybe we shouldn't?)
if (precompile::is_precompile(msg.code_address, rev)) {
Expand Down

0 comments on commit fe4fc5c

Please sign in to comment.