diff --git a/sequencer/src/lib.rs b/sequencer/src/lib.rs index fe07de294e..143e229b01 100644 --- a/sequencer/src/lib.rs +++ b/sequencer/src/lib.rs @@ -297,6 +297,9 @@ pub async fn init_node( ) .with_context(|| "Failed to derive Libp2p peer ID")?; + // Print the libp2p public key + info!("Starting Libp2p with PeerID: {}", libp2p_public_key); + let persistence = persistence_opt.clone().create().await?; let (mut network_config, wait_for_orchestrator) = match ( persistence.load_config().await?,