Skip to content

Commit

Permalink
Update PeerAddress method name
Browse files Browse the repository at this point in the history
  • Loading branch information
sandreae committed Jun 14, 2024
1 parent 4a514bc commit fd9149b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aquadoggo/src/network/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ impl EventLoop {
/// if we are currently not connected to the target peer.
async fn attempt_dial_known_addresses(&mut self) {
fn try_dial_peer(swarm: &mut Swarm<P2pandaBehaviour>, address: &mut PeerAddress) {
let address = match address.to_quic_multiaddr() {
let address = match address.quic_multiaddr() {
Ok(address) => address,
Err(e) => {
debug!("Failed to resolve relay multiaddr: {}", e.to_string());
Expand Down

0 comments on commit fd9149b

Please sign in to comment.