From 879e300542e2e14e03aabecefea2e03c3fe86de2 Mon Sep 17 00:00:00 2001 From: GitHub Date: Thu, 23 May 2024 08:48:54 +0000 Subject: [PATCH] make fmt --- silkworm/rpc/core/evm_trace.cpp | 8 ++++---- silkworm/rpc/core/evm_trace.hpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/silkworm/rpc/core/evm_trace.cpp b/silkworm/rpc/core/evm_trace.cpp index 91c99ef73e..258069359e 100644 --- a/silkworm/rpc/core/evm_trace.cpp +++ b/silkworm/rpc/core/evm_trace.cpp @@ -1514,10 +1514,10 @@ Task TraceCallExecutor::trace_operations(const Transactio } Task TraceCallExecutor::trace_touch_block(const std::shared_ptr block_with_hash, - const evmc::address& address, - uint64_t block_size, intx::uint<256> total_difficulty, - const std::vector& receipts, - TransactionsWithReceipts& results) { + const evmc::address& address, + uint64_t block_size, intx::uint<256> total_difficulty, + const std::vector& receipts, + TransactionsWithReceipts& results) { auto& block = block_with_hash->block; auto block_number = block.header.number; diff --git a/silkworm/rpc/core/evm_trace.hpp b/silkworm/rpc/core/evm_trace.hpp index 9f1587ea71..f797d1c472 100644 --- a/silkworm/rpc/core/evm_trace.hpp +++ b/silkworm/rpc/core/evm_trace.hpp @@ -474,7 +474,7 @@ class TraceCallExecutor { Task trace_transaction_error(const TransactionWithBlock& transaction_with_block); Task trace_operations(const TransactionWithBlock& transaction_with_block); Task trace_touch_block(const std::shared_ptr block_with_hash, const evmc::address& address, - uint64_t block_size, intx::uint<256> total_difficulty, const std::vector& receipts, TransactionsWithReceipts& results); + uint64_t block_size, intx::uint<256> total_difficulty, const std::vector& receipts, TransactionsWithReceipts& results); Task trace_filter(const TraceFilter& trace_filter, const ChainStorage& storage, json::Stream& stream);