()
| 1440 | |
| 1441 | #[test] |
| 1442 | fn discv5_config_uses_base_protocol_identity() { |
| 1443 | let args = RethNetworkArgs::default(); |
| 1444 | let discovery_config = BaseDiscoveryConfig::new(false); |
| 1445 | |
| 1446 | let discv5_config = discovery_config.discv5_config(&args); |
| 1447 | |
| 1448 | assert_eq!(discv5_config.protocol_identity.protocol_id, BASE_V0_PROTOCOL_VERSION); |
| 1449 | } |
| 1450 | |
| 1451 | #[rstest] |
| 1452 | #[case::rlpx_ipv4( |
nothing calls this directly
no test coverage detected