Skip to content

Commit

Permalink
fix: don't check address in locator
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-roland committed Nov 27, 2023
1 parent fbdb6dd commit ecc07b7
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/transport/raweth/link.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,6 @@ int8_t _z_endpoint_raweth_valid(_z_endpoint_t *endpoint) {
if (!_z_str_eq(endpoint->_locator._protocol, RAWETH_SCHEMA)) {
ret = _Z_ERR_CONFIG_LOCATOR_INVALID;
}
// Check address
if (!__z_valid_address_raweth(endpoint->_locator._address)) {
ret = _Z_ERR_CONFIG_LOCATOR_INVALID;
}
return ret;
}

Expand Down

0 comments on commit ecc07b7

Please sign in to comment.