Skip to content

Commit 4ca3b9c

Browse files
Panamattsse
andauthored
update tx fee comment about Transaction trait (#2208)
* update comment about Transaction trait * fmt --------- Co-authored-by: Matthias Seitz <[email protected]>
1 parent 468743f commit 4ca3b9c

File tree

1 file changed

+14
-10
lines changed
  • crates/consensus/src/transaction

1 file changed

+14
-10
lines changed

crates/consensus/src/transaction/mod.rs

+14-10
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ pub mod serde_bincode_compat {
6666
use alloy_eips::Typed2718;
6767

6868
/// Represents a minimal EVM transaction.
69+
/// Currently, EIP-1559, EIP-4844, and EIP-7702 support dynamic fees.
70+
/// We call these transactions "dynamic fee transactions".
71+
/// We call non dynamic fee transactions(EIP-155, EIP-2930) "legacy fee transactions".
6972
#[doc(alias = "Tx")]
7073
#[auto_impl::auto_impl(&, Arc)]
7174
pub trait Transaction: Typed2718 + fmt::Debug + any::Any + Send + Sync + 'static {
@@ -81,16 +84,17 @@ pub trait Transaction: Typed2718 + fmt::Debug + any::Any + Send + Sync + 'static
8184
/// Get `gas_price`.
8285
fn gas_price(&self) -> Option<u128>;
8386

84-
/// Returns the EIP-1559 the maximum fee per gas the caller is willing to pay.
87+
/// For dynamic fee transactions returns the maximum fee per gas the caller is willing to pay.
8588
///
86-
/// For legacy transactions this is `gas_price`.
89+
/// For legacy fee transactions this is `gas_price`.
8790
///
8891
/// This is also commonly referred to as the "Gas Fee Cap".
8992
fn max_fee_per_gas(&self) -> u128;
9093

91-
/// Returns the EIP-1559 Priority fee the caller is paying to the block author.
94+
/// For dynamic fee transactions returns the Priority fee the caller is paying to the block
95+
/// author.
9296
///
93-
/// This will return `None` for non-EIP1559 transactions
97+
/// This will return `None` for legacy fee transactions
9498
fn max_priority_fee_per_gas(&self) -> Option<u128>;
9599

96100
/// Max fee per blob gas for EIP-4844 transaction.
@@ -100,24 +104,24 @@ pub trait Transaction: Typed2718 + fmt::Debug + any::Any + Send + Sync + 'static
100104
/// This is also commonly referred to as the "Blob Gas Fee Cap".
101105
fn max_fee_per_blob_gas(&self) -> Option<u128>;
102106

103-
/// Return the max priority fee per gas if the transaction is an EIP-1559 transaction, and
107+
/// Return the max priority fee per gas if the transaction is an dynamic fee transaction, and
104108
/// otherwise return the gas price.
105109
///
106110
/// # Warning
107111
///
108112
/// This is different than the `max_priority_fee_per_gas` method, which returns `None` for
109-
/// non-EIP-1559 transactions.
113+
/// legacy fee transactions.
110114
fn priority_fee_or_price(&self) -> u128;
111115

112116
/// Returns the effective gas price for the given base fee.
113117
///
114-
/// If the transaction is a legacy or EIP2930 transaction, the gas price is returned.
118+
/// If the transaction is a legacy fee transaction, the gas price is returned.
115119
fn effective_gas_price(&self, base_fee: Option<u64>) -> u128;
116120

117121
/// Returns the effective tip for this transaction.
118122
///
119-
/// For EIP-1559 transactions: `min(max_fee_per_gas - base_fee, max_priority_fee_per_gas)`.
120-
/// For legacy transactions: `gas_price - base_fee`.
123+
/// For dynamic fee transactions: `min(max_fee_per_gas - base_fee, max_priority_fee_per_gas)`.
124+
/// For legacy fee transactions: `gas_price - base_fee`.
121125
fn effective_tip_per_gas(&self, base_fee: u64) -> Option<u128> {
122126
let base_fee = base_fee as u128;
123127

@@ -131,7 +135,7 @@ pub trait Transaction: Typed2718 + fmt::Debug + any::Any + Send + Sync + 'static
131135
// Calculate the difference between max_fee_per_gas and base_fee
132136
let fee = max_fee_per_gas - base_fee;
133137

134-
// Compare the fee with max_priority_fee_per_gas (or gas price for non-EIP1559 transactions)
138+
// Compare the fee with max_priority_fee_per_gas (or gas price for legacy fee transactions)
135139
self.max_priority_fee_per_gas()
136140
.map_or(Some(fee), |priority_fee| Some(fee.min(priority_fee)))
137141
}

0 commit comments

Comments
 (0)