Skip to content

Commit

Permalink
chore: use default type for receipt (#2168)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Mar 8, 2025
1 parent 20faed6 commit 852f046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/consensus/src/receipt/receipts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ pub(crate) mod serde_bincode_compat {
/// }
/// ```
#[derive(Debug, Serialize, Deserialize)]
pub struct Receipt<'a, T: Clone> {
pub struct Receipt<'a, T: Clone = alloy_primitives::Log> {
logs: Cow<'a, Vec<T>>,
status: bool,
cumulative_gas_used: u64,
Expand Down

0 comments on commit 852f046

Please sign in to comment.