Skip to content

Commit

Permalink
fix: rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
jjyr committed Mar 22, 2019
1 parent 4224951 commit 5f7505a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion network/src/service/discovery_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ impl Stream for DiscoveryService {
.network
.peer_store()
.write()
.add_discovered_address(&peer_id, addr);
.add_discovered_addr(&peer_id, addr);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion network/src/service/identify_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ impl Stream for IdentifyService {
.network
.peer_store()
.write()
.add_discovered_address(&peer_id, addr);
.add_discovered_addr(&peer_id, addr);
}
}
Some(IdentifyEvent::Misbehave { result, .. }) => {
Expand Down

0 comments on commit 5f7505a

Please sign in to comment.