feat(explorer-api): use mixnode port in ip lookup

This commit is contained in:
pierre
2022-10-26 12:23:33 +02:00
parent cb1e93e58d
commit cf10bb12ef
3 changed files with 10 additions and 6 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ fn find_location(request: &Request<'_>) -> Result<Location, (Status, LocationErr
let location = geo_ip
.0
.clone()
.query(&ip)
.query(&ip, None)
.map_err(|e| match e {
GeoIpError::NoValidIP => (Status::Forbidden, LocationError::NoIP),
GeoIpError::InternalError => {