Skip to content

Commit

Permalink
Second round of corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
ndkazu committed Sep 5, 2024
1 parent ae006e1 commit a52c9d4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion substrate/client/network/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1702,9 +1702,18 @@ where
SwarmEvent::Behaviour(BehaviourOut::None) => {
// Ignored event from lower layers.
},
SwarmEvent::Behaviour(_) => {
SwarmEvent::Behaviour(BehaviourOut::Message{ peer, message }) => {
// Ignored event from lower layers.
},
SwarmEvent::Behaviour(BehaviourOut::CustomOutboundFailure{ peer,request_id,error }) => {
// Ignored event from lower layers.
},
SwarmEvent::Behaviour(BehaviourOut::CustomInboundFailure{ peer,request_id,error }) => {
// Ignored event from lower layers.
},
SwarmEvent::Behaviour(BehaviourOut::CustomResponseSent{ peer,request_id }) => {
// Ignored event from lower layers.
},
SwarmEvent::ConnectionEstablished {
peer_id,
endpoint,
Expand Down

0 comments on commit a52c9d4

Please sign in to comment.