From 9e48cbcb5597312dff6d8b5f29fa9734be556534 Mon Sep 17 00:00:00 2001 From: wren <9318247+DrawnWren@users.noreply.github.com> Date: Thu, 11 Aug 2022 13:28:11 -0400 Subject: [PATCH] feat(TraceType+PartialEq): added PartialEq to TraceType (#1586) * feat(TraceType+PartialEq): added PartialEq to TraceType * Update ethers-core/src/types/trace/mod.rs Co-authored-by: Matthias Seitz Co-authored-by: Georgios Konstantopoulos Co-authored-by: Matthias Seitz --- ethers-core/src/types/trace/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-core/src/types/trace/mod.rs b/ethers-core/src/types/trace/mod.rs index 7c047393..43bb621f 100644 --- a/ethers-core/src/types/trace/mod.rs +++ b/ethers-core/src/types/trace/mod.rs @@ -11,7 +11,7 @@ pub use filter::*; mod geth; pub use geth::*; -#[derive(Debug, Clone, Deserialize, Serialize)] +#[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize)] /// Description of the type of trace to make pub enum TraceType { /// Transaction Trace