Skip to content
Snippets Groups Projects
Commit 125128c0 authored by Jake Taylor's avatar Jake Taylor
Browse files

fixes 4178

parent dc6a1c86
No related branches found
No related tags found
3 merge requests!510Release,!365attempt to fix mutex segfault in HandleReceivedRequest,!354Channels impl
......@@ -33,7 +33,7 @@ type ReceivedRequest struct {
round rounds.Round
//lock to make sure only one operator at a time
mux *sync.Mutex
mux sync.Mutex
}
func newReceivedRequest(kv *versioned.KV, c contact.Contact,
......@@ -60,7 +60,6 @@ func newReceivedRequest(kv *versioned.KV, c contact.Contact,
partner: c,
theirSidHPubKeyA: key,
round: round,
mux: &sync.Mutex{},
}
}
......
......@@ -23,8 +23,6 @@ import (
"gitlab.com/xx_network/primitives/netTime"
)
const NoRequest = "Request Not Found"
const storePrefix = "requestMap"
const requestMapKey = "map"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment