From 9919fd06c6bda12179b6370517ba7b2abdafd6bb Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 10 Oct 2017 13:29:54 -0400 Subject: [PATCH] uncomment error for store request where contact is not known --- lbrynet/dht/node.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lbrynet/dht/node.py b/lbrynet/dht/node.py index eca24d3c6..d82dc79fa 100644 --- a/lbrynet/dht/node.py +++ b/lbrynet/dht/node.py @@ -467,8 +467,7 @@ class Node(object): contact = kwargs['_rpcNodeContact'] compact_ip = contact.compact_ip() else: - return 'Not OK' - # raise TypeError, 'No contact info available' + raise TypeError, 'No contact info available' if ((self_store is False) and ('token' not in value or not self.verify_token(value['token'], compact_ip))):