()
| 25 | |
| 26 | static SYNC_SETUP: Once = Once::new(); |
| 27 | pub fn setup_test_env() { |
| 28 | SYNC_SETUP.call_once(|| { |
| 29 | tracing_subscriber::fmt().with_max_level(tracing::Level::TRACE).init(); |
| 30 | }); |
| 31 | } |
| 32 | |
| 33 | pub fn generate_mock_relay(port: u16, pubkey: BlsPublicKey) -> Result<RelayClient> { |
| 34 | let entry = |
no outgoing calls