(&self)
| 77 | Txs: Clone, |
| 78 | { |
| 79 | fn clone(&self) -> Self { |
| 80 | Self { |
| 81 | evm_config: self.evm_config.clone(), |
| 82 | pool: self.pool.clone(), |
| 83 | client: self.client.clone(), |
| 84 | config: self.config.clone(), |
| 85 | best_transactions: self.best_transactions.clone(), |
| 86 | compute_pending_block: self.compute_pending_block, |
| 87 | _pd: PhantomData, |
| 88 | } |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | impl<Pool, Client, Evm, Attrs> BasePayloadBuilder<Pool, Client, Evm, (), Attrs> { |
no outgoing calls
no test coverage detected