diff options
author | Mark Haines <mark.haines@matrix.org> | 2014-10-15 13:57:12 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2014-10-15 13:57:12 +0100 |
commit | 27d0c1ecc21026e9fb231746114b53b83ed0b594 (patch) | |
tree | e32b0781ff4ff7d46b3cf25f2f2715aa9248cc16 /synapse/federation/units.py | |
parent | Storage for pdu signatures (diff) | |
parent | SYN-103: Ignore the 'origin' key in received EDUs. Instead take the origin fr... (diff) | |
download | synapse-27d0c1ecc21026e9fb231746114b53b83ed0b594.tar.xz |
Merge branch 'develop' into event_signing
Diffstat (limited to 'synapse/federation/units.py')
-rw-r--r-- | synapse/federation/units.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/synapse/federation/units.py b/synapse/federation/units.py index ecca35ac43..d97aeb698e 100644 --- a/synapse/federation/units.py +++ b/synapse/federation/units.py @@ -156,11 +156,15 @@ class Edu(JsonEncodedObject): ] required_keys = [ - "origin", - "destination", "edu_type", ] +# TODO: SYN-103: Remove "origin" and "destination" keys. +# internal_keys = [ +# "origin", +# "destination", +# ] + class Transaction(JsonEncodedObject): """ A transaction is a list of Pdus and Edus to be sent to a remote home |