From 4586d3be78c94a7fca9c83e8ab915e31391918e3 Mon Sep 17 00:00:00 2001 From: shortcutme Date: Wed, 14 Mar 2018 22:25:27 +0100 Subject: [PATCH] Send my local time as int in the handshake --- src/Connection/Connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Connection/Connection.py b/src/Connection/Connection.py index f33c7b66..d3b8dcfc 100644 --- a/src/Connection/Connection.py +++ b/src/Connection/Connection.py @@ -328,7 +328,7 @@ class Connection(object): "rev": config.rev, "crypt_supported": crypt_supported, "crypt": self.crypt, - "time": time.time() + "time": int(time.time()) } if self.target_onion: handshake["onion"] = self.target_onion