0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-07-03 03:38:32 +02:00

s/VerifyEventSignatures/VerifyAllEventSignatures/

gomatrixserverlib API has been updated
This commit is contained in:
Richard van der Hoff 2017-12-08 17:59:15 +00:00
parent e2f88f3889
commit 58e228fc3a

View file

@ -81,7 +81,7 @@ type txnReq struct {
func (t *txnReq) processTransaction() (*gomatrixserverlib.RespSend, error) {
// Check the event signatures
if err := gomatrixserverlib.VerifyEventSignatures(t.context, t.PDUs, t.keys); err != nil {
if err := gomatrixserverlib.VerifyAllEventSignatures(t.context, t.PDUs, t.keys); err != nil {
return nil, err
}