diff --git a/mesh/node.c b/mesh/node.c
index db888d2..d1d4da2 100644
--- a/mesh/node.c
+++ b/mesh/node.c
return node->provisioner;
}
-bool node_is_provisioned(struct mesh_node *node)
-{
- return (!IS_UNASSIGNED(node->primary));
-}
-
void node_app_key_delete(struct mesh_node *node, uint16_t net_idx,
uint16_t app_idx)
{
diff --git a/mesh/node.h b/mesh/node.h
index 290681e..e26d410 100644
--- a/mesh/node.h
+++ b/mesh/node.h
struct mesh_node *node_find_by_uuid(uint8_t uuid[16]);
struct mesh_node *node_find_by_token(uint64_t token);
bool node_is_provisioner(struct mesh_node *node);
-bool node_is_provisioned(struct mesh_node *node);
void node_app_key_delete(struct mesh_node *node, uint16_t net_idx,
uint16_t app_idx);
uint16_t node_get_primary(struct mesh_node *node);