diff --git a/synapse/federation/units.py b/synapse/federation/units.py
index f4e7b62bd9dc4e93e709aac78ff22e1e46addebe..70412439cd44d2dfc3e41ccbdb50644e36a1f1a4 100644
--- a/synapse/federation/units.py
+++ b/synapse/federation/units.py
@@ -122,11 +122,10 @@ class Edu(JsonEncodedObject):
         "edu_type",
     ]
 
-#    TODO: SYN-103: Remove "origin" and "destination" keys.
-#    internal_keys = [
-#        "origin",
-#        "destination",
-#    ]
+    internal_keys = [
+        "origin",
+        "destination",
+    ]
 
 
 class Transaction(JsonEncodedObject):
diff --git a/tests/federation/test_federation.py b/tests/federation/test_federation.py
index eb329eec507a13cb2268975b9e3484ceb4cc2272..ad09fab392e2a84892c9342129265363c236b2cc 100644
--- a/tests/federation/test_federation.py
+++ b/tests/federation/test_federation.py
@@ -218,9 +218,6 @@ class FederationTestCase(unittest.TestCase):
                 "pdus": [],
                 "edus": [
                     {
-                        # TODO: SYN-103: Remove "origin" and "destination"
-                        "origin": "test",
-                        "destination": "remote",
                         "edu_type": "m.test",
                         "content": {"testing": "content here"},
                     }
diff --git a/tests/handlers/test_presence.py b/tests/handlers/test_presence.py
index a6af648defaac017389f997b56c9dc69a60e7e09..cdaf93429b3d190c5b00ab21216f5b27fe4fe585 100644
--- a/tests/handlers/test_presence.py
+++ b/tests/handlers/test_presence.py
@@ -44,9 +44,6 @@ def _expect_edu(destination, edu_type, content, origin="test"):
         "pdus": [],
         "edus": [
             {
-                # TODO: SYN-103: Remove "origin" and "destination" keys.
-                "origin": origin,
-                "destination": destination,
                 "edu_type": edu_type,
                 "content": content,
             }
diff --git a/tests/handlers/test_typing.py b/tests/handlers/test_typing.py
index 07acda5eeec39932bd79c6931889f46541e59b86..adb5148351edfd29737b975a2f8ccaf5a5c49918 100644
--- a/tests/handlers/test_typing.py
+++ b/tests/handlers/test_typing.py
@@ -33,9 +33,6 @@ def _expect_edu(destination, edu_type, content, origin="test"):
         "pdus": [],
         "edus": [
             {
-                # TODO: SYN-103: Remove "origin" and "destination" keys.
-                "origin": origin,
-                "destination": destination,
                 "edu_type": edu_type,
                 "content": content,
             }