Send my local time as int in the handshake
This commit is contained in:
parent
2204e0cf9c
commit
4586d3be78
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ class Connection(object):
|
||||||
"rev": config.rev,
|
"rev": config.rev,
|
||||||
"crypt_supported": crypt_supported,
|
"crypt_supported": crypt_supported,
|
||||||
"crypt": self.crypt,
|
"crypt": self.crypt,
|
||||||
"time": time.time()
|
"time": int(time.time())
|
||||||
}
|
}
|
||||||
if self.target_onion:
|
if self.target_onion:
|
||||||
handshake["onion"] = self.target_onion
|
handshake["onion"] = self.target_onion
|
||||||
|
|
Loading…
Reference in a new issue