return NetworkAddress on Error::Connect

This commit is contained in:
yggverse 2025-07-22 09:49:39 +03:00
parent cc1018224a
commit e878fe4ba2
2 changed files with 3 additions and 3 deletions

View file

@ -96,7 +96,7 @@ impl Client {
}
}
}
Err(e) => callback(Err(Error::Connect(e))),
Err(e) => callback(Err(Error::Connect(network_address, e))),
}
})
}