Skip to content

Commit

Permalink
chore: rm non exhaustive from ReceiptEnvelope
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Dec 23, 2024
1 parent 8ab278c commit 33d69b6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion crates/consensus/src/receipt/envelope.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ use alloy_rlp::{BufMut, Decodable, Encodable};
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "serde", serde(tag = "type"))]
#[non_exhaustive]
#[doc(alias = "TransactionReceiptEnvelope", alias = "TxReceiptEnvelope")]
pub enum ReceiptEnvelope<T = Log> {
/// Receipt envelope with no type flag.
Expand Down
1 change: 0 additions & 1 deletion crates/rpc-types-eth/src/transaction/receipt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ impl TransactionReceipt {
| ReceiptEnvelope::Eip4844(receipt)
| ReceiptEnvelope::Eip7702(receipt)
| ReceiptEnvelope::Legacy(receipt) => receipt.receipt.status.coerce_status(),
_ => false,
}
}

Expand Down

0 comments on commit 33d69b6

Please sign in to comment.