diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-12 19:29:32 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-12 19:29:32 +0000 |
commit | 38df10b99eaa7f8165c9e541142e96bf023ad744 (patch) | |
tree | c3dd608920838ae59e2fa9488cf6d70b313caf31 /synapse | |
parent | Parrellize fetching of events (diff) | |
download | synapse-38df10b99eaa7f8165c9e541142e96bf023ad744.tar.xz |
Remove unused function
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/federation.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/synapse/handlers/federation.py b/synapse/handlers/federation.py index 5a7593cc3b..77c81fe2da 100644 --- a/synapse/handlers/federation.py +++ b/synapse/handlers/federation.py @@ -789,18 +789,6 @@ class FederationHandler(BaseHandler): defer.returnValue(ret) @defer.inlineCallbacks - def trigger_query_auth(self, destination, event_id): - local_auth_chain = yield self.store.get_auth_chain([event_id]) - - result = yield self.replication_layer.query_auth( - destination, - event.room_id, - event.event_id, - local_auth_chain, - ) - - - @defer.inlineCallbacks @log_function def do_auth(self, origin, event, context, auth_events): # Check if we have all the auth events. |