There was an error while loading. Please reload this page.
1 parent 6a8ea95 commit e068355Copy full SHA for e068355
1 file changed
crates/p2p-consensus/src/network.rs
@@ -524,6 +524,11 @@ impl P2PNetwork {
524
// Update peer mapping
525
if self.peer_mapping.get_hotkey(&source).is_none() {
526
self.peer_mapping.insert(source, signed.signer.clone());
527
+ info!(
528
+ peer_id = %source,
529
+ hotkey = %signed.signer.to_hex(),
530
+ "Peer authenticated - mapped peer_id to hotkey"
531
+ );
532
}
533
534
Ok(signed.message)
0 commit comments