From 10810226ff2da587659b621ddd788b6c745e8912 Mon Sep 17 00:00:00 2001 From: Kay Kurokawa Date: Mon, 19 Dec 2016 16:10:52 -0500 Subject: [PATCH] Fixing bug in publisher --- lbrynet/lbrynet_daemon/Publisher.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lbrynet/lbrynet_daemon/Publisher.py b/lbrynet/lbrynet_daemon/Publisher.py index a52934833..e6ec73710 100644 --- a/lbrynet/lbrynet_daemon/Publisher.py +++ b/lbrynet/lbrynet_daemon/Publisher.py @@ -137,9 +137,6 @@ class Publisher(object): m = Metadata(self.metadata) def set_txid_nout(claim_out): - if not claim_out['success']: - msg = 'Failed to claim name:{}'.format(claim_out['reason']) - defer.fail(Exception(msg)) txid = claim_out['txid'] nout = claim_out['nout'] log.debug('Name claimed using txid: %s, nout: %d', txid, nout)