diff --git a/crates/primitives-traits/src/receipt.rs b/crates/primitives-traits/src/receipt.rs index 1d255b64ae0d..e07bbe346004 100644 --- a/crates/primitives-traits/src/receipt.rs +++ b/crates/primitives-traits/src/receipt.rs @@ -22,6 +22,6 @@ pub trait Receipt: /// Returns transaction type. fn tx_type(&self) -> u8; - /// Calculates the receipts root of all receipts in a block. + /// Calculates the receipts root of the given receipts. fn receipts_root(receipts: &[&Self]) -> B256; }