diff options
author | Erik Johnston <erik@matrix.org> | 2018-10-24 09:44:22 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-10-24 09:44:22 +0100 |
commit | 810715f79aafc586e70e9dcd3da4a2cc6823f704 (patch) | |
tree | 73357359f52508df508c0a2436114691a61df339 /synapse/state/v2.py | |
parent | Update event_auth table for rejected events (diff) | |
download | synapse-810715f79aafc586e70e9dcd3da4a2cc6823f704.tar.xz |
Rename resolve_events_with_factory
Diffstat (limited to 'synapse/state/v2.py')
-rw-r--r-- | synapse/state/v2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/state/v2.py b/synapse/state/v2.py index d034b4f38e..5d06f7e928 100644 --- a/synapse/state/v2.py +++ b/synapse/state/v2.py @@ -29,7 +29,7 @@ logger = logging.getLogger(__name__) @defer.inlineCallbacks -def resolve_events_with_factory(state_sets, event_map, state_res_store): +def resolve_events_with_store(state_sets, event_map, state_res_store): """Resolves the state using the v2 state resolution algorithm Args: |