Skip to content

Commit

Permalink
Drop access list from eth::Tx Debug impl (#2006)
Browse files Browse the repository at this point in the history
# Description
Drop the `access_list` field from the `Debug` impl because it's pretty
noisy and not very helpful for debugging purposes.
  • Loading branch information
MartinquaXD authored Oct 23, 2023
1 parent b01e545 commit 7e6cbcc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/driver/src/domain/eth/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,7 @@ impl std::fmt::Debug for Tx {
.field("from", &self.from)
.field("to", &self.to)
.field("value", &self.value)
.field("input", &hex::encode(&self.input.0))
.field("access_list", &self.access_list)
.field("input", &self.input)
.finish()
}
}
Expand Down

0 comments on commit 7e6cbcc

Please sign in to comment.