Skip to content

Commit

Permalink
Add additional data to the logs (#4718)
Browse files Browse the repository at this point in the history
  • Loading branch information
SozinM committed Jun 23, 2023
1 parent 67cceb9 commit 88c713f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion chain/ethereum/src/ethereum_adapter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,9 @@ impl EthereumAdapterTrait for EthereumAdapter {

debug!(logger, "eth_call";
"address" => hex::encode(call.address),
"data" => hex::encode(&call_data)
"data" => hex::encode(&call_data),
"block_hash" => call.block_ptr.hash_hex(),
"block_number" => call.block_ptr.block_number()
);

// Check if we have it cached, if not do the call and cache.
Expand Down

0 comments on commit 88c713f

Please sign in to comment.