Sets the ordering strategy for the transaction pool.
(mut self, ordering: BaseOrdering<T>)
| 900 | |
| 901 | /// Sets the ordering strategy for the transaction pool. |
| 902 | pub const fn with_ordering(mut self, ordering: BaseOrdering<T>) -> Self { |
| 903 | self.ordering = ordering; |
| 904 | self |
| 905 | } |
| 906 | |
| 907 | /// Sets the maximum inflight EIP-7702 delegated account transactions per sender. |
| 908 | pub const fn with_max_inflight_delegated_slots(mut self, limit: usize) -> Self { |