| 22 | |
| 23 | #[derive(Clone, Debug)] |
| 24 | pub struct AnvilDebugProvider<PN, PA, N> |
| 25 | where |
| 26 | N: Network, |
| 27 | PN: Provider<N> + Send + Sync + Clone + 'static, |
| 28 | PA: Provider<N> + Send + Sync + Clone + 'static, |
| 29 | { |
| 30 | _node: PN, |
| 31 | _anvil: PA, |
| 32 | _anvil_instance: Option<Arc<AnvilInstance>>, |
| 33 | block_number: BlockNumberOrTag, |
| 34 | _n: PhantomData<N>, |
| 35 | } |
| 36 | |
| 37 | pub struct AnvilDebugProviderFactory {} |
| 38 |
nothing calls this directly
no outgoing calls
no test coverage detected