uncomment error for store request where contact is not known

This commit is contained in:
Jack Robison 2017-10-10 13:29:54 -04:00
parent c9515f8fb6
commit 9919fd06c6
No known key found for this signature in database
GPG key ID: 284699E7404E3CFF

View file

@ -467,8 +467,7 @@ class Node(object):
contact = kwargs['_rpcNodeContact'] contact = kwargs['_rpcNodeContact']
compact_ip = contact.compact_ip() compact_ip = contact.compact_ip()
else: else:
return 'Not OK' raise TypeError, 'No contact info available'
# raise TypeError, 'No contact info available'
if ((self_store is False) and if ((self_store is False) and
('token' not in value or not self.verify_token(value['token'], compact_ip))): ('token' not in value or not self.verify_token(value['token'], compact_ip))):