Skip to content

Commit

Permalink
revert changes about Log events for 3101
Browse files Browse the repository at this point in the history
  • Loading branch information
noandrea committed Sep 2, 2024
1 parent f4e8f63 commit 9d8c8bb
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions tracing/3101/shared/primitives/rpc/evm-tracing-events/src/evm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,6 @@ pub enum EvmEvent {
is_static: bool,
context: super::Context,
},
Log {
address: H160,
topics: Vec<H256>,
data: Vec<u8>,
},
}

#[cfg(feature = "evm-tracing")]
Expand Down Expand Up @@ -258,15 +253,6 @@ impl<'a> From<evm::tracing::Event<'a>> for EvmEvent {
is_static,
context: context.clone().into(),
},
evm::tracing::Event::Log {
address,
topics,
data,
} => Self::Log {
address,
topics: topics.to_vec(),
data: data.to_vec(),
},
}
}
}

0 comments on commit 9d8c8bb

Please sign in to comment.