mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-08 05:55:21 -05:00
* wip interface primitives * wip * Integrate it inside rpc- crates * fmt * move tx to mod.rs * Add interfaces, executor to toml * Added nits, comments fix
13 lines
339 B
Rust
13 lines
339 B
Rust
use crate::{Address, Bytes, H256};
|
|
|
|
/// Ethereum Log
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
|
pub struct Log {
|
|
/// Contract that emitted this log.
|
|
pub address: Address,
|
|
/// Topics of the log. The number of logs depend on what `LOG` opcode is used.
|
|
pub topics: Vec<H256>,
|
|
/// Arbitrary length data.
|
|
pub data: Bytes,
|
|
}
|