From a5673268537a5c0fad7ceedb86981a26fd61a431 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Mon, 13 Sep 2021 14:55:34 -0400 Subject: [PATCH] fix all_claims_producer --- lbry/wallet/server/leveldb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/wallet/server/leveldb.py b/lbry/wallet/server/leveldb.py index 304855d4c..df0c4eaad 100644 --- a/lbry/wallet/server/leveldb.py +++ b/lbry/wallet/server/leveldb.py @@ -730,7 +730,7 @@ class LevelDB: # TODO: fix the couple of claim txos that dont have controlling names if not self.db.get(Prefixes.claim_takeover.pack_key(claim_txo.normalized_name)): continue - claim = self._fs_get_claim_by_hash(claim_hash[1:]) + claim = self._fs_get_claim_by_hash(claim_hash) if claim: batch.append(claim) if len(batch) == batch_size: