Set the signing struct

This commit is contained in:
Kegan Dougal 2020-06-10 16:34:24 +01:00
parent d1d30510b8
commit f75fc1c37c

View file

@ -85,6 +85,7 @@ func (oqs *OutgoingQueues) getQueue(destination gomatrixserverlib.ServerName) *d
incomingEDUs: make(chan *gomatrixserverlib.EDU, 128), incomingEDUs: make(chan *gomatrixserverlib.EDU, 128),
incomingInvites: make(chan *gomatrixserverlib.InviteV2Request, 128), incomingInvites: make(chan *gomatrixserverlib.InviteV2Request, 128),
retryServerCh: make(chan bool), retryServerCh: make(chan bool),
signing: oqs.signing,
} }
oqs.queues[destination] = oq oqs.queues[destination] = oq
} }