Skip to content
Snippets Groups Projects
Commit 6677ab24 authored by Benjamin Wenger's avatar Benjamin Wenger
Browse files

fixed a typo

parent bf4d4ec5
No related branches found
No related tags found
3 merge requests!67Release,!56added a multilookup function to the bindings,!55fully implemented trial hashing of identity fingerprints. Needs tests.
...@@ -215,12 +215,12 @@ type lookupResponse struct{ ...@@ -215,12 +215,12 @@ type lookupResponse struct{
id *id.ID id *id.ID
} }
// MuliLookup Looks for the contact object associated with all given userIDs. // MultiLookup Looks for the contact object associated with all given userIDs.
// The ids are the byte representation of an id stored in an IDList object. // The ids are the byte representation of an id stored in an IDList object.
// This will reject if that id is malformed or if the indexing on the IDList // This will reject if that id is malformed or if the indexing on the IDList
// object is wrong. The MultiLookupCallback will return with all contacts // object is wrong. The MultiLookupCallback will return with all contacts
// returned within the timeout. // returned within the timeout.
func (ud UserDiscovery) MuliLookup(ids *IdList, callback MultiLookupCallback, func (ud UserDiscovery) MultiLookup(ids *IdList, callback MultiLookupCallback,
timeoutMS int) error { timeoutMS int) error {
idList := make([]*id.ID,0,ids.Len()) idList := make([]*id.ID,0,ids.Len())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment