adding the ability to create dht records with a specified owner keypair

This commit is contained in:
Evelyn Hobert 2025-01-20 17:26:32 +00:00 committed by Christien Rioux
parent 95d61855a8
commit abfa5b12e8
9 changed files with 145 additions and 36 deletions

View file

@ -671,7 +671,7 @@ pub extern "C" fn routing_context_create_dht_record(port: i64, id: u32, schema:
let routing_context = get_routing_context(id, "routing_context_create_dht_record")?;
let dht_record_descriptor = routing_context
.create_dht_record(schema, crypto_kind)
.create_dht_record(schema, None, crypto_kind)
.await?;
APIResult::Ok(dht_record_descriptor)
}